The tag has no wiki summary.

learn more… | top users | synonyms (1)

1
vote
1answer
12 views

Shortcut Keystroke

In Sql editor of SSMS, How to setup a short keys 1) when I type 'sfw' and get "select * from where" or 2) when I type "sfw mytable" and get "select * from mytable where". Thanks
-2
votes
2answers
19 views

Index creation memory using SSMS 2008r2 [closed]

How can I change Index creation memory Using SSMS 2008R2? What is the best practice for Index creation memory?
0
votes
0answers
23 views

Drag and Drop table in the Diagram Pane

I sometimes use the Diagram Pane in SQL Server Management Studio (in this case 2008) to create a query quickly, without having to write the JOINS manually. If you're confussed what I mean already ...
1
vote
3answers
91 views

TSQL Fill gaps in months and repeat values in column

Started with TSQL last Wednesday... I have the following data in tblStage1: PROJECT USERNAME DATE PERCENTAGE --------- ----------------- ------------ ...
0
votes
1answer
51 views

SQL Create new record in table, take record id and use in second procedure

I have a somewhat tricky question to ask but I shall do my best. I have two classes: BlogPost BlogTag BlogPost has a public property HashSet<BlogTag> Tags, a collection of blog tags, simple ...
0
votes
1answer
16 views

Check In Encrypted Procedures to VSS

I am trying to cut-over stored procedures from SSMS to Visual Source Safe. My question is this. I have a few procedures which are encrypted with the WITH ENCRYPTION keyword. Now if I am to check-in ...
2
votes
0answers
42 views

Differences: creating sql database in visual studio & sql sever 2008

I usually use Microsoft Visual Studio 2010 for system development and I always use the built-in SQL Server Express in Visual Studio to create and manage a database. Currently, I'm learning Microsoft ...
0
votes
0answers
14 views

Problems opening Visual Studio databases in SSMS?

I have been developing a website in Visual Studio 2010 and want to manage the database within it with SSMS, which I just successfully installed and got running. I thought that when I was able to ...
1
vote
1answer
49 views

TSQL date comparison returns erroneus text centric error

Right then, I have another one. This is the same proc as I was working with before. The results weren't what I needed so went back to the drawing board. The system is the same: SQL Server 2005 || ...
0
votes
0answers
25 views

How to safely take an SQL job out of the schedule?

There is a table | jobID | status | startTime | endTime | and a job, that is scheduled to run every X seconds, it will take the first undone job ID, put it in stored proc and run it. Stored proc takes ...
0
votes
1answer
104 views

Can I configure SSMS intellisense to sort correctly?

There are two tables that I am working with that have similar names: Projections and ProjectionStatus. If I type select * from projections, intellisense autocompletes the table name to ...
0
votes
1answer
96 views

Open new tabs to the right in SQL Server Management Studio 2008 R2

I have to use Sql Server Management Studio 2008 R2. When I open a new-query tab it opens to the LEFT of the other tabs and pushes all open tabs to the right (thus changing their position every time I ...
1
vote
2answers
71 views

How to generate multiple Alter Scripts in SSMS

I'm using sql server management studio 2008 to try and generate an alter script for each of my stored procedures in order to save the scripts for each revision. I can easily generate an alter script ...
0
votes
0answers
78 views

Explain the difference in performance between ODBC in VS versus ODBC in SSMS

I've been tasked with creating an extract routine, pulling data from a Progress database and importing it into SQL Server. I've built the SQL statement, and although not the most complex statement ...
1
vote
1answer
143 views

SSMS shortcut to navigate between open query windows

I sometimes have a large amount of query windows open in SSMS 2008. Is there a keyboard shortcut to navigate between open query windows? Go to previous/next open query window? I know there is ...
0
votes
2answers
48 views

In SMSS what's the difference between NULL and nothing, in a query result?

I know this maybe a newbie question, but i'm wondering why I sometimes get NULL in a result, and sometimes it's just totally blank - shouldn't they all be null?
1
vote
1answer
26 views

Understanding SSMS error messages, regarding an INSERT error:

When I run an SSMS command to insert data, I get this error: Msg 206, Level 16, State 2, Line 1 Operand type clash: int is incompatible with ntext What is ment by Level 16, State 2 My insert ...
0
votes
1answer
277 views

SQL Server invalid column name error complaining about column long gone

EDIT: Please read my answer below first, before you decide to read and try to understand the text below. You may not find it's worth it when you see what was going on ;) I have a weird problem: SQL ...
0
votes
1answer
98 views

when using File Shrink option in SSMS to shrink log, when does the space get released back to the O/S

I have shrunk a log file of a database in SSMS 2008: treeview mydatabase (right-click) tasks -> shrink -> files : choose log from dropdown (*) reorganize ...
1
vote
2answers
159 views

when a database is deleted in SQL Server Management Studio is all space released back to the O/S

When a database in the Treeview of SQL Server Management Studio is right-clicked and is taken offline and then the Delete option is chosen, is all space allocated to the database released back to the ...
1
vote
3answers
258 views

Export large amounts of binary data from one SQL database and import it into another database of the same schema

I have one database with an image table that contains just over 37,000 records. Each record contains an image in the form of binary data. I need to get all of those 37,000 records into another ...
0
votes
1answer
278 views

How to insert current date in row's column

How do I insert current date into a row's column in the "Edit data" view in MS SqlServer Mgm Studio? I want to get the equivalent value of GetDate() function call. Here's an image which I hope ...
0
votes
1answer
89 views

Is is posiible to display Editable Row with selected Column wise sorting in MS SQL Server Management Studio

I am not sure whether am asking right question or not but here a case where i have to edit row/cells depending on some conditions, ie I have open MS SQL Server Management Studio, right click on ...
0
votes
1answer
39 views

SQL Server connection restriction

Is there any way to restrict individual connection to SQL Server Management. Like I have set of users can login to SQL server Management studio with active 2 connection for a individual open in a ...
0
votes
1answer
240 views

SSMS 2008 Connecting to SQL Server 2012 - Intellisense?

Has anyone had any luck getting intellisense in SSMS 2008 to work when connecting to a SQL Server 2012 (SP1) instance? For me, it appears that this is not working. Whilst I would consider upgrading ...
0
votes
0answers
145 views

SSMS 2008 R2 Attempting to run a new query tries to connect to SQL Server Compact

The problem I'm having is very strange behavior when I connect to my remote production Database. When I start up SQL Server Management Studio 2008 R2 my new query window opens disconnected and every ...
0
votes
1answer
46 views

How can I format SSMS query results for easy copy and pasting?

I'm using SET NOCOUNT ON and I unchecked "Include column headers in the result set", but I'm still getting the dashes delimeter: 1222 ------ 12234 ------ 000033 ------- All I want is a ...
2
votes
2answers
299 views

How to generate temp table columns and datatypes automatically via script

I create temp tables quite often in SQL and I am looking into a way to generate the column names and datatypes automatically for the table definition so I don't have to look them all up everytime. ...
0
votes
1answer
114 views

Parse variable in the Query SSIS

In SQL Task Editor I have the following Query DELETE FROM [TICKETS_DATA] where BILLING_TICKETS_DATA_Time_ID < (SELECT TIME_ID FROM [TIME] WHERE (TIME_Year = ?) AND (TIME_Month = ?)) - 1 I ...
0
votes
1answer
83 views

Can't figure out why I'm getting an invalid column name error

I have these two temp tables that I'm using (they were actually written by a previous developer and I'm trying to adapt his code to be faster without using cursors, but that's beside the point) and ...
0
votes
1answer
303 views

Why can I not connect to SQL Server using IP address, but works with server name?

I have a server hosted in Amazon's cloud (EC2, AWS), where I have SQL Server installed. With SSMS on the server, I can connect to the server instance using the Amazon server name and the SQL Server ...
1
vote
1answer
150 views

UNPIVOT on Table in a Different Server/Database Fails with 'conflicts with the type of other columns' error

I am trying to run an UNPIVOT statement from a stored procedure, on a table in a different database. I can run the UNPIVOT fine locally, but when I run it on a different database/server I get the ...
3
votes
2answers
824 views

Add unique constraint in SQL Server 2008 GUI?

I have an existing table with data. I have just added a new column but I cannot find how to add a unique constraint on that column. Could someone please advise? Right-clicking and selecting "check ...
1
vote
1answer
130 views

Why is my stored procedure only working in SSMS , but not in the Reporting Services(SSRS)?

I'm working on putting many stored procedures into SSRS , and then you can view it on a website interface.. however, it's giving me issues. Mainly, it only works when I run the exec manually but the ...
3
votes
1answer
198 views

SQL Server Database Design and Foreign Key confused

I need help to make my database design better. The db design is from the old developer, now I'm trying to get the design better by trying to put foreign key around so there won't be any orphan table. ...
0
votes
3answers
561 views

How to generate scripts to recreate table using SQL Server Management Studio?

I have a table in a local SQL server database. I want to recreate this table in a hosted database. What I want to do is to have a script that when run against the hosted database, this table is ...
0
votes
1answer
75 views

SQL Profiler throws an error : Could not load file or assembly 'System.Data, Version = 2.0.0.0?

I installed a third-party SQL Server 2008 R2 toolset a few days ago and then uninstalled it yesterday. But now when I run SQL Profiler from SSMS, I get an error that says: Could not load file or ...
2
votes
0answers
64 views

Remote SQL Server 2008 Management Studio is not connecting [closed]

Remote SQL Server 2008 Management Studio is not connecting to the database using TMG SERVER 2010. Error 40 and 53 are showing up. But it is working without tmgserver. Please advise. Thanks
2
votes
2answers
3k views

No snap-ins have been registered for Windows PowerShell version 2

I am trying to run a Powershell script on a web server where SQL Server Management Studio is not installed but all pertinent packages from the Microsoft SQL Server 2008 R2 SP2 Feature Pack have been ...
0
votes
1answer
204 views

sqlcmd mode from SSMS - setvar assignment to a substitution variable possible?

I'm running this from SSMS 2008R2 with SQLCMD Mode enabled. With the code below: :SETVAR GREETING "HELLO" :SETVAR SALUTATION $(GREETING) SELECT '$(GREETING)' SELECT '$(SALUTATION)' I see the ...
2
votes
1answer
71 views

How to make 2 queries use 2 CPUs

I have a query of the following shape : A UNION ALL B UNION ALL C UNION ALL D And would like to parallelize it by calling A, B, C and D in parallel and then, union them in .Net. Those 4 queries all ...
1
vote
3answers
915 views

SQL Server Management Studio - Server Names Disappeared

The first dialog box you get when opening SSMS (mine is 2008 R2) allows you to choose which server you want to connect to. I had at least six servers in that list, including a local server called ...
0
votes
2answers
97 views

How to populate database with generated data in visual studio 2010 / SSMS 2008?

In my (c#) Visual Studio 2010 project i have a reference to a database. However, the database is empty. I would like to insert some bogus data in this database so that i can test my app. Are there ...
0
votes
1answer
107 views

Command(s) completed successfully but… the tables are not created

I backed up my database table's and entire schema into .sql script using Visual Studio's Database Publishing Wizard. I then tried to re-create those tables on another PC, not before re-creating the ...
0
votes
0answers
37 views

Disable renaming table on click

In the object explorer in SQL Server Management Studio (2008, but I think 2005 behaves the same), I sometimes click on a table name that I have already selected. This lets me rename the table, but I ...
1
vote
2answers
96 views

Automatically import table columns into form design

So far, I found C# on SQL Server impressively easy to develop with (when relying on the IDEs to walk you through completion). So it comes as no surprise that I expect a feature that may or may not be ...
1
vote
2answers
67 views

Find which line of the SQL is running in SQL Server Management Studio?

I am executing a very long SQL script in SQL Server Management Studio, normally it takes a few second to be done. But this time it is taking forever and never completes. Other people running this ...
0
votes
2answers
2k views

SQL Server Management Studio error “Saved settings file cannot be found”

Here is my problem: Every time I start the "Microsoft SQL Server Management Studio", I get a warning The automatically saved settings file "\\Settings\CurrentSettings-2012-02-13.vssettings' cannot be ...
2
votes
0answers
79 views

Is there a way to set defaults for generate scripts in SQL Server 2008?

Most of the time when I generate script in SSMS, I have to changed the exact same number of settings in the Generate and Publish Scripts wizard. Is there a way to set the defaults in this wizard ...
1
vote
3answers
697 views

Why SQL Server 2008 Management Studio doesn't have option “Open table”

I used to have option to open table in SQL Server 2005 Management Studio, but don't have that anymore in the 2008 version. Does anybody know why this option has been removed? And, if this feature is ...

1 2 3 4