Collections:
Running Queries with SQL Server Management Studio Express in SQL Server
How to run Queries with SQL Server Management Studio Express in SQL Server?
✍: FYIcenter.com
1. Launch and connect SQL Server Management Studio Express to the local SQL Server 2005 Express.
2. Click on the "New Query" button below the menu line. Enter the following SQL statement in the query window:
SELECT 'Welcome to FYIcenter.com SQL Server!'
3. Click the Execute button in the toolbar area. You should get the following in the result window:
Welcome to FYIcenter.com SQL Server!
See the following picture to know where the query and result windows are:
⇒ Running Queries with 'sqlcmd' Tool in SQL Server
⇐ Connecting SQL Server Management Studio Express To a SQL Server in SQL Server
⇑ Downloading and Installing SQL Server 2005 Express Edition
2016-12-04, 4598🔥, 0💬
Popular Posts:
What Is Program Global Area (PGA) in Oracle? A Program Global Area (PGA) is a memory buffer that is ...
Why I Can Not Enter 0.001 Second in DATETIME values in SQL Server Transact-SQL? If you enter millise...
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...
How To Get the Definition of a Stored Procedure Back in SQL Server Transact-SQL? If you want get the...
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...