Tagged Questions

Microsoft SQL Server Management Studio 2008

learn more… | top users | synonyms

25
votes
10answers
10k views

How can I automate the “generate scripts” task in SQL Server Management Studio 2008?

I'd like to automate the script generation in SQL Server Management Studio 2008. Right now what I do is : Right click on my database, Tasks, "Generate Scripts..." manually select all the export ...
7
votes
2answers
387 views

Paste text with newlines in it in Sql Server management studio 2008 'edit top 200 rows' window in a varchar(200) column

i have to manually edit a few records in the (sql 2008) database. So i open up SSMS, rightclick on the table, choose 'edit top 200 rows', locate the right record and column, paste my text (which is ...
7
votes
1answer
2k views

How to alter SQL in “Edit Top 200 Rows” in SSMS 2008

In SQL Server 2008 Management Studio, when I right click on a database table and choose "Select Top 100 Rows", I can then e.g. easily add a "ORDER BY " statement to the SQL. That works fine. But when ...
6
votes
3answers
2k views

Why did SQL Server Management Studio 2008 command-line switches stop working?

I've always relied heavily on Windows shortcuts to SSMS that include command-line switches allowing me to quickly open up a specific database on a specific server. For example Ssms.exe -S ...
5
votes
3answers
278 views

SQL Server Management Studio connection defaults to 'master' when selecting a database-specific object

In SQL Server 2008 R2 Management Studio, if I right-click on an object inside a specific database and choose "Select top 1000 rows ..", the database connection for the query window always opens on ...
4
votes
0answers
30 views

How do I read Query Cost, and is it always a percentage? [migrated]

I'm currently studying for SQL 70-433 (the Microsoft Certification exam), and I'm getting very confused about the "query cost" performance metric. According to any documentation I could find via ...
4
votes
1answer
2k views

Code for SQL Server Management Studio 2008 plugin

I am looking for some reference code implementing a SSMS 2008 plugin. Can somebody point me to the right direction?
3
votes
2answers
114 views

Scripts all Sprocs at once with DROP and CREATE

SQL Server 2008 Goal: To generate scripts for creating sprocs that are already in the DB. Must be one script per file. I know I can simply right click the database and 'Tasks>Generate Scripts', but ...
3
votes
1answer
136 views

Where are registered servers stored?

I'm using SMS 2008 & I'm looking for where the registered servers are stores on my local machine. I have searched the registry with no luck. AHIA, Larry...
3
votes
1answer
348 views

SSMS 2008 Task List

In SQL Server Management Studio 2008 there is a Task List very much like the one in Visual Studio, I can't seem to figure out how to put it to use nor can I find any documentation on it other than the ...
3
votes
1answer
454 views

Object browser in SSMS 2008 doesn't work if I don't have access to all databases

In SQL Server Management Studio 2008, if I log into a shared hosting provider with many databases on one server, I cannot use the Object Explorer. This worked fine in 2005. Anyway to change this ...
2
votes
1answer
201 views

Failure to debug T-SQL or stored procedures

Sql Server 2008 SP2 In Management Studio 2008 after setting a breakpoint on any piece of T-SQL and presssing debug button: TITLE: Microsoft SQL Server Management Studio ...
2
votes
3answers
364 views

Change the default save location for SQL Management Studio 2008

As the title states, how do I do this? I want to hit save, and have SSMS automatically direct me to a network folder..
2
votes
4answers
94 views

SQL Return Percentage

Trying to create a query which will send me back the percentage of USER_TOT_REQS. How do I get the result back with decimals? SELECT u.USER_NAME ,SUM(t.REQ_AMOUNT) as 'USER_TOTAL_AMOUNT' ...
2
votes
3answers
197 views

How do I change the default SELECT TOP 1000 query to use * instead of each field?

In SSMS 2008 R2, we have the default Select top 1000 and Edit top 200 queries from the right click menu. I've seen where you can change the # of rows it returns in the options. What I'm after is, ...
2
votes
4answers
433 views

TransactSQL to run another TransactSQL script

I have 10 transact SQL scripts that each create a table and fill it with data. I am attempting to create 1 master sql script that will run each of the 10 other scripts. Is there a way with TSQL / ...
2
votes
4answers
50 views

how to use SQL to alter a field value?

How do I use SQL to flip the value of a bit for rows meeting certain criteria? For example, my SQL is SELECT * from Attributes WHERE (IsValid = 'TRUE') This query gives me all the records where I ...
2
votes
2answers
136 views

Intellisense and context help for sys stored procedures - bugs or by design?

SQL Server 2008 R2 Dev Execution in SSMS of: 1) use AdventureWorksDW; GO; sp_cdc_enable_table 'dbo', 'FactInternetSales', @role_name=NULL, ...
2
votes
1answer
130 views

Script table as CREATE includes recent column additions as ALTERs?

I'm running SQL Server Management Studio 2008 against a SQL Server 2005 back-end. SSMS just exhibited a behavior I have never seen before. I don't know if this is something new in SSMS 2008 or just ...
2
votes
3answers
372 views

SQL Server 2008 - Query takes forever to finish even though work is actually done

Running the following simple query in SSMS: UPDATE tblEntityAddress SET strPostCode= REPLACE(strPostCode,' ','') The update to the data (at least in memory) is complete in under a minute. I ...
2
votes
1answer
288 views

how to force installation of management studio?

i already had 2008 express sql server but for some reason it came without management studio. how do i know? because i went programs->sql server 2008 and there was no GUI there. so i went here to ...
2
votes
1answer
214 views

Why isn't SSMS smart when it comes to adding columns?

Whenever I want to add a column to a table it usually goes something like this: Fire up SQL Server Management Studio (SSMS) Select "Design" on the table I want to add the column to Add the new ...
2
votes
7answers
1k views

Inserting 1000s of rows to SQL table using SSMS

I have a sql script with insert statements to insert 1000s of rows (12000 approx.). When i try running the script in SSMS, it throws 'Out of memory' exception after a while. "An error occurred while ...
2
votes
2answers
4k views

SQL Server 2008 Management Studio - Running Parameterized Query

I'd like to be able to run an already parameterized query from within the SSMS: select name from aTable where id = @id I know that other IDEs (e.g. TOAD) allow for parameter binding - is this ...
1
vote
1answer
19 views

How to write an trigger to update uniqueidentifier field?

I am using SSMS 2008 and am trying to write a trigger now to update a uniqueidentifier field after an insert. How do I do this? Example data is below: c1 c2 c3 c4 ...
1
vote
1answer
90 views

Stop SQL Server Management Studio from adding ANSI_NULLS and QUOTED_IDENTIFIER

How do I prevent SQL Management Studio (10.50.2500.0) from adding this to the beginning of every stored procedure when I right-click/Modify? SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ...
1
vote
1answer
86 views

TSQL CTE Error: Incorrect syntax near ')'

I am developing a TSQL stored proc using SSMS 2008 and am receiving the above error while generating a CTE. I want to add logic to this SP to return every day, not just the days with data. How do I ...
1
vote
1answer
122 views

SQL Server Management Studio, how to get execution time down to milliseconds

When I submit a batch (e.g., perform a query) in SSMS, I see the time it took to perform the operation in my query window's status bar down to the second. Is it possible to configure SSMS to show the ...
1
vote
2answers
59 views

Best way to query csv or excel file via SQL 2008 R2 SSMS 64 bit?

Hello everybody I have some certs in SQL 2008 but am by no means a master. I was curious if my goal was to query a CSV or Excel file on my desktop within SSMS how to do this? BEFORE anyone mentions ...
1
vote
1answer
53 views

How to convert a Tsql scalar function into a table function?

I am using SSMS 2008 and I have the following scalar function to take a text string and remove all metatags from Microsoft Word. The tags are enclosed in "<...>" and there can be any number of ...
1
vote
1answer
61 views

“Generate Scripts” in SSMS 2008 doesn't script indexes and triggers by default

I noticed that "Generate Scripts" in SSMS 2008 doesn't script indexes and triggers by default. I know this can be changed in SSMS options but why would anyone want to omit these 2 important parts ...
1
vote
2answers
75 views

Why does my SqlConnection remain in the SSMS Processes list after closing it?

I have a C# console application with the following code: using (var cn = new SqlConnection()) { cn.ConnectionString = "Data Source=localhost;Integrated Security=True;Persist Security Info=False"; ...
1
vote
1answer
62 views

Is it possible to script the creation of registered servers in SSMS 2008?

I have about 60 servers that I want to add as Registered servers for quick access. They are similarly named...is there a way to script this so I don't have to go through the wizard 60 times? Thanks! ...
1
vote
3answers
57 views

Microsoft SQL Querying Hours in Timestamp

I'm looking to query a Table that contains timestamps (ex: 2011-05-03 09:52:00). Need to query the entire table and find timestamps which have been entered between 18:00:00 and 20:00:00 of any day, ...
1
vote
1answer
196 views

SQL Server Management Studio hanging every few seconds

I'm using SQL Server 2008 R2. SSMS started intermittently hanging every 5 seconds or so today for no apparent reason. For example, I'm typing code and then the text editor stops updating for about 2 ...
1
vote
0answers
170 views

SQL Server Management Studio, no New Project option

I used to organize my queries in a Projects/Solutions in Management Studio at work. But after I had installed SSMS at home I coulnd't find and option to create new project. In File-> New there is only ...
1
vote
1answer
104 views

Any good GUI tool to easily create stored procs SQL server 2008?

The templates for stored-procs in SSMS do not auto-populate all input columns, again there is manual work involved. I am looking for something like right-click on table and say CREATE stored-proc, ...
1
vote
2answers
232 views

How to add a custom folder to a Sql Server Management Studio 2008 solution?

I would like to add custom folders to a Sql Server Management Studio 2008 solution. Currently only three folders are included: Connections, Queries, and Miscellaneous with no easy way to add or ...
1
vote
0answers
70 views

See images in SSMS?

I was browsing around and found this blog post: http://erikej.blogspot.com/2010/04/version-3-of-exportsqlce-now-available.html (It is for a great add in if you user SQL Server CE.) On that post I ...
1
vote
2answers
297 views

SSMS 2008 Add-In - Execute Query

I'm loading a sql script up to an SSMS 2008 add-in like so: ' create a new blank document ...
1
vote
1answer
859 views

SQL Server Management Studio 2008 - Standard Reports - Schema Changes History - How is the Date Determined?

SSMS 2008 comes with a great set of standard reports, including one named Schema Changes History. When I run this report, I see all schema changes made since a certain date. My question is this. How ...
1
vote
0answers
157 views

ssms script trigger timeout

Using the SSMS (Sql server management studio) 2008 ide, I frequently get timeouts asking it to script a trigger (or table) to a new query editor window. This particular time, the error message is ...
1
vote
2answers
2k views

SQL Server 2008 autocomplete for “TOP” keyword

Either the autocomplete in SQL Server Management Studio 2008 is buggy, or I am. Either way, when I try to type this and hit the spacebar: SELECT TOP Autocomplete immediately changes it to this ...
1
vote
2answers
2k views

How to save query result using T-SQL in a csv file?

How to save query result using T-SQL in a csv file in SSMS 2008? Needs to be done programmatically.
1
vote
1answer
299 views

Keyboard shortcut to close a tab in SQL Server Managament Studio?

Is there a keyboard shortcut to close a tab in SQL Server Managament Studio 2008? like Alt-W in Firefox.
1
vote
1answer
173 views

How and what version of SSMS do I have to install after installing VS 2010?

Hi I installed VS 2010 on a plain Vista x64 OS, now I need to install SSMS as well. Based on your experience, what version do I have to install? Thanks in advance!
0
votes
5answers
34 views

Updating Value Where Date

I'm looking to update the SOLUTION_ID where the CREATED_DATE is Greater Than or Equal To the given date. What I have so far is updating all the records in the Table. CREATED_DATE has a smalldatetime ...
0
votes
0answers
37 views

SQL Server Management Studio - Always on Top

I'm running Microsoft SQL Server Management Studio 10.50.1617.0. Recently it seems to have taken an "always on top" mode, like that of Task Manager. It's not a massive issue but can be annoying after ...
0
votes
1answer
39 views

Debugging does not show current stored procedure version

I'm working on a SQL Server 2008 R2 instance. I've just changed the code for a stored procedure. When I try to debug that proc, the SSMS debug window shows the older version of the code. What can I ...
0
votes
0answers
12 views

How do I insert / remove vertices in the FK relationship line?

SSMS 2008 R2 I have a foreign key relationship drawn in a database diagram. How do I remove vertices from this relationship line? I can add a vertex by watching for the cursor to change to a diagonal ...

1 2