ش | ی | د | س | چ | پ | ج |
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
ادامه مطلب ...
سوالی که در این جا ممکن است برای شما پیش آید آنست که آیا چنین قابلیتی در Internet Explorer 8 نیز وجود دارد یا خیر. در جواب بایستی عرض کنم که قابلیت مشابه ایی همانند آنچه که در Firefox بدان اشاره شد، شرکت مایکروسافت در Internet Explorer 7 در اختیار کاربران قرار داد. اما با ارائه نسخه 8 و در ادامه آن Internet Explorer 9، به ظاهر چنین قابلیتی حذف گردیده است!
اگر بخواهیم به صورت دقیقتر به این مساله نگاه کنیم، اگر چه این قابلیت حذف نشده است، بلکه بسیار بهتر در اختیار کاربران قرار گرفته است، بسیار بهتر از آنچه که Firefox ارائه می نماید.
فرض کنید که بر روی Internet Explorer چندین زبانه گشوده اید. حال می خواهید IE را بسته و بار دیگر آن را اجرا نمایید. اما مایلید که IE به شما آخرین زبانه های باز بوده قبلی را به نمایش بگذارد. بدین منظور می توانید از یکی از دو روش زیر استفاده کنید.
روش اول: بعد از اجرای مجدد IE، کافیست طبق تصاویر زیر عمل کنید:
ادامه مطلب ...
.
The easiest method to find the current version and SP level is to use the SQL Query Analyzer and run the SQL query in step 4 for servers that run Microsoft SQL Server 2000.
Select Programs > Microsoft SQL Server Enterprise Manager.
Select Tools > SQL Query Analyzer.
Select the local instance of your SQL server in the initial SQL Query Analyzer popup window.
You also need to select your connection authentication method. Use either SQL Server authentication or Windows authentication for your server. Windows authentication is the easier method in most cases because it uses the credentials of the account that you are currently logged in with. Supply an SQL Server login name such as SA and the associated password if you select SQL Server authentication.
The account that you are logged into does not have the necessary rights to connect to the SQL server if you attempt a connection and receive the error Not Associated with a Trusted SQL Server Connection when you use Windows authentication. Log off the server and log on again as a different user with the correct rights or use SQL Server authentication instead.
The Windows authentication method is selected in this case. Click OK.
Enter the SQL query string as this example shows:
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
Select the Parse Query tool
to verify the syntax.
The message Command(s) complete successfully displays. Modify the syntax until the parser allows it to run without errors if the syntax is incorrect.
Select the Execute Query tool
to run your query.
Output similar to the text in this image displays:
The server runs Standard Edition, build number 8.00.760, SP 3 in this case.
Close the SQL Query Analyzer. You are prompted to save the current query. Save the query to a local folder if you want to be able to run this again at a later time. Otherwise, answer no to finish the close.
Close the Microsoft SQL Server Enterprise Manager.