Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
8answers
3k views

How do I get SQL Server Management Studio to stop processing on an error? [closed]

Possible Duplicate: SQL Server - stop or break execution of a SQL script This seems like an incredibly dumb question to have to ask, but how do I get SQL Server Management Studio to stop ...
10
votes
4answers
8k views

Autocomplete on SQL Management Studio?

Does anyone know if there's an add-in that does autocomplete for queries on SQL Management Studio?
8
votes
3answers
3k views

Generate SQL server scripts from command line?

In Microsoft SQL Server Management Studio 2008 there is a "Generate scripts..." option under the Tasks menu. I'm just wondering if this tool is available from the command line somehow? It looks ...
6
votes
5answers
20k views

How can I enable Full-Text indexing using SQL Server Management Studio in SQL Server 2008 Express?

I did it using the commands as described here and it works but I want to do it using the SQL Management Studio. SQL Server 2008 Books Online says this: To create a full-text catalog: In ...
6
votes
1answer
2k views

Where can i find information on creating plugins for SQL Server Management Studio?

I have read that while plug-ins are not supported for SQL Server Management Studio, it can be done. Does anyone have any resources or advice on how to go about it using C#? A company that is ...
5
votes
3answers
50 views

Why altering of a column is not permitted through query but easily done is server explorer

I am having a question i.e when i tried to alter a data type of a table by query or by modifying the data type directly i used to get some errors stating this can not be done. But where as if i open ...
5
votes
2answers
420 views

Is it possible to automatically force SQLCMD mode in script

We're using Visual Studio Database Professional and it makes heavy use of SQLCMD variables to differentiate between environments while deploying. I know there's several directives available for ...
5
votes
1answer
423 views

SQL Server Management Objects

Am getting the same error on the code below using either trusted or SQL logins: VS2010, Console app .NET4, Win XP. SQL2005 Full. Bombs on the transfer.TransferData ERROR : errorCode=-1073548784 ...
4
votes
1answer
71 views

Can I set a “goto” database in SQL Management Studio?

I have a connection to my database on a website, the thing is the hoster also has all the other databases here (thousands) -- I'm locked out of all of them except mine, so I don't even know why I'm ...
4
votes
1answer
97 views

Query designer in SSMS and order of join sequence?

SSMS has a query designer, which I usually avoid, because honestly, I can't really work with it. Unfortunately, my colleagues do. As I have 30 minutes to spare, I finally want to know whether I am ...
4
votes
2answers
676 views

Automatically refresh a query in ms sql server management studio?

Is there a way to automatically refresh the result of a query in the Microsoft SQL Server Management studio (SQL Server 2008 R2)? Currently i'm debugging an application which automatically inserts ...
4
votes
1answer
242 views

Intellisense accept shortcut

is it possible to change sql intellisense accept suggestion key? I'm used to use enter, but sql management studio seem to accept only Tab or Space key - enter just cancels suggestion and makes new ...
4
votes
1answer
213 views

SQL Server Management Studio Plugin for Diagrams

Is there any plugin for SQL Server Management Studio which add more functions and ease of use in database diagrams.
4
votes
2answers
2k views

How to edit one specific row in Microsoft SQL Server Management Studio 2008?

In Microsoft SQL Server Management Studio 2008, is there a secret to be able to edit one row based on a key? There's an option to do "Edit Top 200 Rows", but what if I want to select some other row ...
3
votes
2answers
188 views

Why does Sql Management Studio add a cross join?

I sometimes need to run basic updates on a join. For example: UPDATE t1 SET col1 = 'val1' FROM table1 as t1 INNER JOIN table2 as t2 ON t1.ID = t2.t1_id WHERE t2.col3 = 'val3' This works perfectly, ...
3
votes
1answer
156 views

SQL Server Mgmt Studio messing up my Database!

This has effectively ruined my day. I have a larger number of tables with many FK relationships in between. One of the tables (lets call it table A) has a computed column, which is computed via a UDF ...
3
votes
6answers
130 views

See queries that hit SQL

Is there a way using sql 2008 Management Studio to look at the queries that hit the server? I'm trying to debug a program and I get messages like "Incorrect syntax near the keyword 'AND'". Since the ...
3
votes
1answer
458 views

SQL Server 2008 management studio drop tables warning?

Why does SQL server 2008 always warn about needing to drop tables to rename columns? I was under impression this was not required unless it was a key. If I change a column from null to not null even ...
3
votes
2answers
974 views

How to show the “Home” folder for SSRS 2008 in SQL Management Studio

Our Sys Admin just installed SSRS 2008 for me to play around with and see if I can get all our 2005 projects running on it. However, when I log onto the report server with SQL Management Studio 2008 ...
3
votes
5answers
1k views

Ctrl+F and Ctrl+H doesn't work in SQL management studio

I cannot use the Ctrl+F and Ctrl+H in my SQL Management studio. Even if I use the menu items it doesn't work. Haven't installed anything new or changed anything recently. Any ideas?
3
votes
2answers
5k views

SQL Server 2008 - Go From Select to Edit Quickly

In server management studio 2008 you can right mouse click on a table and then hit the select the first 1000 rows. Is there a button or a quick way to edit one of the returned rows instead of having ...
2
votes
1answer
131 views

Problems connecting to Sql Server CE 4.0 with Sql Management Studio 2008

I need to set up and maintain my MS Sql CE 4.0 database. I have created the 4.0 DB (with the .sdf extension) using visual studio 2010 but when I try and connect with management studio 2008 I get this ...
2
votes
3answers
363 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
1answer
310 views

How to get management studio 2008 express R2 to create SQL CE 4 file

I'm facing issues whereby I can't open a SQLCE 4 database using SQL Server Management Studio 2008 Express R2 because of a version issue. I've checked and I have both 'v3.5' and 'v4.0' versions of SQL ...
2
votes
1answer
142 views

SQL Server extended properties and management studio

Hi I have a sql server 2000 db and i added some extended properties to this db. Then i installed sql server 2008 rc2 and management studio. The problem when i want to open sql server 2008 db extended ...
2
votes
6answers
498 views

How to check if a table already exists in the database?

Now I am using something like: IF (object_id('table', 'U') is not null) AND (NOT EXISTS (SELECT * FROM [table] WHERE id = 0)) RETURN; to check if this 'table' already exists in my ...
2
votes
1answer
236 views

SQL Mangement Studio/SQL: Seeing the GroupBy / Sum aggregate functions

Quite new to this but i have created a SQL script that groups by and Sums a column.. but in SQL Management studio it shows me a grid with column value but nothing underneath it i.e. the SUM.. Do i ...
2
votes
1answer
317 views

Sql management studio solution generation over TFS

I'm writing some utility which performs following: creates structure for sql database creates solution + projects binds projects and solutions to TFS I'm able to recreate .ssmssln, .ssmsqlproj, ...
2
votes
1answer
521 views

How do I Make Management Studio Express use proxy settings to connect to online SQL service

It doesn't seem like SQL Management Studio Express 2005 considers Internet Options proxy settings defined for the LAN when trying to connect to SQL Server 2005. Is there a way to make it use the ...
2
votes
2answers
319 views

Is it possible to use linq in SQL Management Studio or use it in inline sql?

I would like to offload the work of generating an sql statement from the application to the database. Is this possible?
2
votes
3answers
3k views

How get the T-SQL code to find duplicates?

MS Access has a button to generate sql code for finding duplicated rows. I don't know if SQL Server 2005/2008 Managment Studio has this. If it has, please point where If it has not, please tell me ...
2
votes
3answers
194 views

sql server management plugins

Is there some kind of plug in you can get for Microsoft SQL management studio that will: 1) help you format your sql (configuration, so we can get it to match our codeing guidelines) 2) highlight ...
2
votes
4answers
554 views

SqlDataReader executing TSQL is faster than management studio executing TSQL

If i run a TSQL Statement in management studio and run the same the query through SqlDataReader, the latter gives the result faster than the former... Any reason??
2
votes
2answers
1k views

What is this process in Sql Server Activity monitor?

There is a process that seems to be running all the time in SQL Server 2005 activity monitor. Double clicking on it produces the following query: CREATE TABLE #tmpDBCCinputbuffer ([EVENT TYPE] ...
1
vote
1answer
28 views

Quickly navigate through data with SQL Management Studio

I'm a developer who works a lot in an environment with lots of FK relations. When I'm developing my application, I would like the ability to quickly navigate through data. I'll explain it through an ...
1
vote
1answer
20 views

Combine my results into a single flat table

Suppose I have an sql statement select a.Date, count(a.Id) as Apples from dbo.apples as a group by a.Date which yields a result Date Apples 10/1/2011 4 10/2/2011 6 10/4/2011 8 And I have a ...
1
vote
2answers
96 views

LINQ to SQL: how to set a caption for columns(alias) of table in Lambda Express

I use the SQL Management Studio for create database I create a table and create columns of table Names of columns are on the English language like "test_ID" in the server side when run a query(linq ...
1
vote
1answer
38 views

Modifying database using LINQ to SQL in C# makes the database inaccessible in SQL Management Studio

Using SQL Server 2008 Express, I attach the Northwind database in SQL Server Management Studio, and everything works fine. I then disconnect the server, shut down SQL Server Management Studio, and ...
1
vote
2answers
68 views

SQL Azure Migration Wizard - small extra step needed?

I've recently migrated a couple of SQL 2008 databases to Azure using the 3.7 Migration Wizard from CodePlex. After completing the migration, everything works well, except that I don't have all the ...
1
vote
3answers
99 views

Management Studio doesn't show results from cursor

Ok, this might be an easy one, but I can't find a solution. I'm beginning to work with cursors in T-SQL and am playing around with them. However I don't get my results back if I execute them in ...
1
vote
1answer
51 views

Installing Sql Management Studio Express in English

I have a French OS (XP) and also "Microsoft Sql Management Studio Express" that is in French. Now, I decided to install the English version of this software. So, I downloaded the English version of ...
1
vote
1answer
747 views

Script all views/functions/proceudres in a Sql Server database in dependency order

Sql Server 2008 (and probably most other versions): Management Studio has a 'generate scripts' option that can in theory script a whole database with all objects (Right click, tasks, Generate ...
1
vote
2answers
165 views

How to switch database context to newly created database?

I wrote a script to create a database: 1: USE master; 2: IF (db_id('myDB') is null) 3: CREATE DATABASE myDB; 4: USE myDB; but it does not work... I got an error: Could not locate ...
1
vote
2answers
135 views

Tool for Developing SSRS Reports

I only have SSMS 2008 Express on my dev machine. What tools are there that I can use to develop, maintain, and manage server side SSRS reports on this machine?
1
vote
2answers
108 views

.mdf file opening problem

I created myFile.mdf using SQL Server Management Express and saved some data to it using vb.net. When I tried to open it in SQL Server Management Express, It did not open it saying there is no editor ...
1
vote
2answers
127 views

How to remove shortcut command Ctrl+E in Management Studio

I'm really frustrated by this shortcut because I commonly use both Emacs and Management Studio for different projects. However accidentally pressing CTRL + E in MS and expecting cursor to move to the ...
1
vote
3answers
233 views

Automate Generate Scripts Wizard in SQL2008

Problem: how to automate a Generate Scripts in SQL2008 Management Studio: ie right click on database, Tasks, Generate Scripts All Tables All Stored Procs Create drop statements Don't use USE ...
1
vote
1answer
53 views

Managing an SQL 2005 instance from management studio that ships with SQL Server 2008 R2

Is there any one using the management studio that comes with SQL Server 2008 R2 to manage an SQL server 2005 SP3 instance?. Are there any issues to watch out for? Any recommendations? Thanks.
1
vote
1answer
224 views

How to enable automatic transaction scoping on SQL Server Management Studio?

I'm used to work with tools like Toad or PL/Sql Developer for Oracle and every SQL statement I run on the query window runs automatically under a trasaction scope. So, if my SQL statement is not ...
1
vote
1answer
635 views

How to generate scripts using SQL management studio for C# Usage

I would like to create my database tables in SMS then generate a script so C# can create the tables programmitically. I am currently hand coding each table at a time in visual studio. I think its far ...

1 2 3