Microsoft SQL Server Management Studio 2012

learn more… | top users | synonyms

0
votes
2answers
24 views

SELECT * FROM Linked MySQL server

I have a SQL Server 2012.(120.120.55.15) Today I linked MySQL server(120.120.55.30) to my SQLServer and gave it a name "MYSQL". In Object Explorer everything seems fine. I can see MySQL server's ...
0
votes
1answer
18 views

Client database is using Text field, I'm using nvarchar

In relation to Need to convert Text field to Varchar temporarily so that I can pass to a stored procedure I've tried the cast, but I still get a surviving CRLF that plays havoc with my system. There ...
0
votes
1answer
29 views

How to connect to SQL Server CE file using SSMS

I am using SSMS 2012 and trying to connect to the SDF created by Orchard. According to this answer, I should be able to select SQL Server Compact Edition as the Server type when connecting my object ...
0
votes
1answer
25 views

Pivot table wording - SSMS 2012

I'm trying to pivot the PRODUCT column of a table. Values that have two words have an underscore in between: EX of some PRODUCT values: PRODUCT USSIC_Aviation Avemco_Aviation Property Life This ...
1
vote
1answer
37 views

Code Snippet - specify cursor position

Can I amend this code snippet so that when I use the snippet SSMSs cursor is at the end of the snippet ready for me to carry on writing the script? <?xml version="1.0" encoding="utf-8" ?> ...
1
vote
0answers
100 views

SSMS Extensibility Project - howto research/debug

In the vein of this answer regarding creation of an SSMS Extension: namespace SSMSAddin { using System; using System.IO; using Extensibility; using EnvDTE; using EnvDTE80; ...
0
votes
1answer
102 views

SQL Server Management Studio 2012 not recognizing Local Server

I'm a total newb to SSMS, but all of the tutorials I'm finding online gloss over the step where they start up the program and connect to their local server, their computer's name. I'm on Windows 8, ...
1
vote
1answer
244 views

SSMS 2012 System.OutOfMemoryException (client side) and SQL Prompt (debug info incl)

Some background: I've been encountering this memory exception within SSMS 2012 since it was released coupled with Red Gate's SQLPrompt (this exception never happens in my SSMS 2008R2 on the same ...
0
votes
1answer
40 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
327 views

Opening .sql files in SSMS 2012 as default program and with existing instance

Installation of SSMS 2012 alongside any other existing SSMS installation, such as SSMS 2008 R2 has a problem with setting the default program for opening .SQL files to the new SSMS 2012 version. ...
0
votes
0answers
48 views

Creating full-text search on a SQL Server 2008 R2 database issue

After creating the full-text catalog in the storage section of the database, I right click on the particular table I want to full-text index and I am not allowed to select the full-text index field. ...
0
votes
1answer
152 views

SQL Server 2012 Intellisense works, but for 2008 is does NOT work

From the day I got my machine before even opening SSMS 2008 they had installed on my machine, I had installed 2012, so I don't know if intellisense ever worked on 2008. However it is working on 2012. ...
1
vote
1answer
73 views

Confusion: Why SSMS creates a default clustered index for a primary key with an identity

I just executed the following script CREATE TABLE Test ( ID INT IDENTITY PRIMARY KEY, Info nvarchar(50) ) For my surprise, SSMS created a clustered index for the ID column. So, my question ...
2
votes
0answers
283 views

SSMS 2012 Addin - ObjectExplorerService not available in SSMSAddinDenali

This question is in reference to the SSMSAddinDenali SQL Server Management Studio 2012 Addin found here http://ssmsaddin2012.codeplex.com/SourceControl/changeset/view/19629#101185. I cannot implement ...
0
votes
0answers
20 views

How do you toggle showing the results tab in SSMS query editor

In the previous version the shortcut key was Ctrl+R This would close or open the query results pane in previous versions of SSMS, but in SSMS2012 that doesn't work anymore. This was a nice way for ...
0
votes
2answers
45 views

TSQL Keyword Previous or Last or something similar

This question is geared for those who have more SQL experience than me. I am writing a query(that will eventually be a Stored Procedure but this should be irrelevant) where I want to select the count ...
2
votes
1answer
66 views

SSMS ADD IN : Status bar color

I'm writing a SSMS Add in (SQL 2012). I'm trying to change the status bar color but How ? The documentation is too poor and I have searched during hours. I'm blocked Here: TextDocument document = ...
0
votes
0answers
45 views

Create a ToolWindow requiring a Connection

I created an own SQL Management Studio 2012 Add-In using a WPF UI. In my UserControl being displayed I want to require an open SQL Server Connection just like it happens if you open an SQL File. An ...
2
votes
1answer
242 views

What shell is SSMS 2012 based on and how can I darken the theme?

I have a dark query editing environment, but the object explorer and other elements default to the white background. I really like VS 2012's dark theme, and was hoping someone knew of a way to get ...
0
votes
2answers
112 views

SQL Server: stored procedure saves with errors

I am using SQL Server 2008 and SSMS 2012. I have a stored procedure that references a table that does not exist. The editor displays red underlines on the offending table to indicate that something is ...
1
vote
1answer
60 views

Combining Case Statements in SSMS

I need to create a report that a user can toggle through data going from Region > District> Committee> Events. I work with set data views that I cannot change. I need to define a District and a ...
1
vote
1answer
139 views

VS style snippets in SSMS 2012. Do they exist?

I am trying to setup a simple snippet in SQL Server management studio. When I heard the word "snippet", I assume that they would work like they do in Visual Studio. By that I mean that there are ...