Showing posts with label version. Show all posts
Showing posts with label version. Show all posts

Monday, November 18, 2013

SQL SERVER – Product Version and Service Pack Number

היי חברים,
שיטה נחמדה לבדיקת נתוניי SQL Server כגון : Product Version , Service Pack Number וכו'.
1.       פתחו את ה-SQL Server Management Studio
2.       פתחו דף שאילתא חדש
3.       רשמו את השאילתא הבאה :
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')




והתוצאה לפניכם (דוגמא) :







SQL Server 2012 Versions
RELEASE
PRODUCT VERSION
SQL Server 2012 Service Pack 1
11.00.3000.00
SQL Server 2012 RTM
11.00.2100.60
SQL Server 2008 R2 Versions
RELEASE
PRODUCT VERSION
SQL Server 2008 R2 Service Pack 2
10.50.4000.0
SQL Server 2008 R2 Service Pack 1
10.50.2500.0
SQL Server 2008 R2 RTM
10.50.1600.1
SQL Server 2008Versions
RELEASE
PRODUCT VERSION
SQL Server 2008 Service Pack 3
10.00.5500.00
SQL Server 2008 Service Pack 2
10.00.4000.00
SQL Server 2008 Service Pack 1
10.00.2531.00
SQL Server 2008 RTM
10.00.1600.22


בהצלחה !

רון נס.


============================================================================================================================================================================================================================================================


Hello Friends,
Nice method to test SQL Server data such as: Product Version, Service Pack Number etc..

1.     Open the SQL Server Management Studio
2.     Open a new query page
3.     Enter the following query:

SELECT SERVERPROPERTY ('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition’)

Here is the result (example):






SQL Server 2012 Versions
RELEASE
PRODUCT VERSION
SQL Server 2012 Service Pack 1
11.00.3000.00
SQL Server 2012 RTM
11.00.2100.60
SQL Server 2008 R2 Versions
RELEASE
PRODUCT VERSION
SQL Server 2008 R2 Service Pack 2
10.50.4000.0
SQL Server 2008 R2 Service Pack 1
10.50.2500.0
SQL Server 2008 R2 RTM
10.50.1600.1
SQL Server 2008Versions
RELEASE
PRODUCT VERSION
SQL Server 2008 Service Pack 3
10.00.5500.00
SQL Server 2008 Service Pack 2
10.00.4000.00
SQL Server 2008 Service Pack 1
10.00.2531.00
SQL Server 2008 RTM
10.00.1600.22


Good Luck J

Ron Ness.

Tuesday, July 9, 2013

Check Version of SharePoint 2010 Currently Installed

שלום חברים,
ישנן מספר דרכים לבדוק איזו גרסה של SharePoint 2010 מותקנת בסביבה שלכם. אפרט על מספר שיטות בדיקה :
שיטה 1: באמצעות הניהול המרכזי של SharePoint 2010 :
1.       1. פתח את הניהול המרכזי של SharePoint 2010. (SharePoint 2010 Central Administration)
2. לחץ על הקישור להגדרות מערכת (System Settings)
3. לחץ על הקישור לניהול שרתים בחווה זו (Manage Servers in This Farm)
4. בדוק את שדה גרסת מסד הנתונים של התצורה (Configuration Database Version )


שיטה 2: רשימה מפורטת באמצעות SharePoint 2010 ניהול מרכזי:
1. פתח את הניהול המרכזי של SharePoint 2010.
2. לחץ על הקישור לשדרוג ומיגרציה (Upgrade and Migration)
3. לחץ על הקישור בדוק מוצר והתקנות Patch (Check Product and Patch Installation Status)
4. בדוק את עמודת הגרסה.

• יש כפתור תצוגה בצד שמאל למעלה שמשנה את הבחירה מחווה לשרתים בודדים.
• בחלקו העליון של דף קישור שכותרתו לחץ כאן לקבלת המידע העדכני ביותר על עדכונים זמינים עבור SharePoint 2010  תנווט אותך לרשימה של כל העדכונים המצטברים עבור SharePoint.


שיטה 3: PowerShell
1. מעטפת ניהול הפתוחה SharePoint 2010 מהתפריט התחל (לחץ לחיצה ימנית ובחר הפעל כמנהל)
2. הקלד  (get-spfarm).buildversion




בהצלחה !

רון נס.


============================================================================================================================================================================================================================================================
Hello Friends,
There are several ways to check the version of SharePoint 2010 currently installed in your environment, Check it out below.
Option 1: Through SharePoint 2010 Central Administration:
2.     Open SharePoint 2010 Central Administration
3.     Click on the link for System Settings
4.     Click the link for Manage Servers in This Farm
5.     Look at the Configuration Database Version field



Option 2: A detailed list through SharePoint 2010 Central Administration:
1.     Open SharePoint 2010 Central Administration
2.     Click on the link for Upgrade and Migration
3.     Click the link for Check Product and Patch Installation Status
4.     Look at the Version column for the release your server is at

·         There is a view button in the top left that will change the list from the farm to individual servers in the farm
·         At the top of the page a link labeled Click here for the latest information on available updates for SharePoint 2010 Products will take you to a list of all cumulative updates for SharePoint.
·         Any Hotfix will show under the product it applied to



Option 3: PowerShell
1.     Open SharePoint 2010 Management Shell from the Start menu (right-click and select Run as Administrator)
2.     Type  (get-spfarm).buildversion



Good Luck :)

Ron Ness.