Graphical UI provided by Microsoft for free to assist in managing and configuring SQL server.
6
votes
4answers
4k views
SQL Server Management Studio 2012 hangs
When I click on the "Databases" node in "Object Explorer" it just keeps on "Loading items" until at some point it just hangs.
This happens only when connecting to a remote server, not when accessing ...
0
votes
1answer
963 views
Why cannot I open .bak files with SQL Server Management Studio? [duplicate]
Possible Duplicate:
Cant read .bak files
Title pretty much says it. I am trying to open up a .bak file that my employer gave me but yet I cannot open them with Microsoft SQL Server ...
0
votes
1answer
382 views
Update SQL Server Management Studio editor window
I was just wondering if someone can help with an annoyance I have with SQL Server Management Studio. When using the query editor it doesn't automatically update when new tables are created.
For ...
0
votes
1answer
307 views
.NET Updating Data in SQL View
I've been asked by my boss to replicate an MS Access feature that we're going to lose shortly after migrating our product to .NET.
The feature is the ability to view and update any data in the ...
1
vote
1answer
1k views
Removing Add-ins for SQL Server Management Studio
I have SQL server 2008 R2 installed.
In the past I have installed the Redgate Sql Promprt 5 add-in. It doesn't work anymore, but I still have the menu in the SQL Management Studio.
I don't see the ...
2
votes
1answer
91 views
How do I make sure a string column has no spaces?
I have currently a primary key field of nvarchar(50), I am willing to change the type, if I can get it to accept no white space. Is there anyway to do this?
Should allow the following:
------
AAAA
...
0
votes
6answers
6k views
SQL Server 2005 Transaction Log will not Truncate
I have a database .mdf file that is 138 GB along with a transaction log file of 55 GB.
The recovery model was set to Full (which it doesn't need to be). I ran a full backup of the database and the ...
70
votes
7answers
105k views
Where is SQL Server Management Studio 2012?
I had on my laptop SQL Server 2008 R2 and Visual Studio 2008 and 2010 (we're a training company - hence the need for multiple versions). I've installed SQL Server 2012, and have finally got SQL ...
1
vote
2answers
792 views
SQL Server connection with C# -> does a database exist?
In a small application I'm making for school, I'm attempting to determine if the necessary database exists.
If it does not, I want to create it (along with the tables in the database), and then use ...
1
vote
3answers
2k views
Copy table data from SQL Server 2000 to SQL Server 2008
I have a SQL Server 2000 database with 7 tables. I want to copy the table data from this database to another database running on a SQL Server 2008 instance.
The tables will be exactly the same, I ...
0
votes
1answer
1k views
SQL LocalDB Open in SQL Mgmt Studio Run Script
I created a new LocalDB database from Visual Studio in my WPF project. Now I'd like to run a SQL Script to create all the tables in it. But I can't find how I can open the database with SQL ...
0
votes
3answers
557 views
SQL Server and GUID?
I am trying to run this code :
exec myStoredProcedure
Cast('c5b48202-36af-4597-9780-5366d4188f55' AS uniqueidentifier),
744,
1,
'test',
'Chrysanthemum.jpg',
'2012-03-26 ...
1
vote
2answers
596 views
Restored database missing views, stored procs and foreign keys
I'm trying to create a copy of a database in SQL Management Studio (SQL Server Express) using Backup-Restore. Local to local. When I do it it copies tables and data, but ignores views, stored ...
0
votes
1answer
195 views
Sync framework does not sync imported data
I'm using Sync Framework with two sql server express databases. The code is working fine. I change data on server or client and it syncs with each other just fine.
What I'm trying to do is, after I ...
0
votes
2answers
156 views
Attaching and detaching databases in Management Studio does not result in unloading old database and loading the new one
I have two versions of the same database, say DB1 and DB2. DB1 is a copy made of the mdb and the log file a month ago. The database structure and data has changed since then. I need to switch back and ...
1
vote
3answers
1k views
Limited permissions for a SQL Server user
I have a .NET application which connects to SQL Server 2008 for storing some data. I use SQL Server authenthication providing an sq username and a password to my end-user in app.config file. If ...
2
votes
1answer
372 views
database created in SQL Management Studios cannot be found by Visual Studio 2010
I created a new database (AC_2012) on my localhost in MS SQL Server Management Studios 2008.
I'm trying to connect it via connection string in web.config in Visual Studios 2010 Premium. It won't pick ...
0
votes
1answer
68 views
Setting default user in user table
I'm working on a database and I have a table called "Users", which store the sites user information (username, email and so on). The site has a forum and if a user that has posted something on the ...
0
votes
2answers
53 views
Issue with exec statement
When I am trying to carry out following statement from Management Studio, it is executed successfully -
exec [sp_GetAllBillsForDate] '03/06/2012','03/06/2012'
But when I change it to
exec ...
0
votes
1answer
649 views
SQL Management Studio attach database: Cannot open “Add” dialogue
When I press the Add... button in the Attach Databases window I get the following error:
TITLE: Microsoft SQL Server Management Studio
------------------------------
Failed to retrieve data for this ...
3
votes
2answers
1k views
What does a dashed / dotted relationship line represent in SQL Management Studio - Database Diagram
I'm looking at an existing database in Microsoft SQL Server Management Studio, and in the Database Diagram there is one relatioship that appears with a dashed or dotted line. The other relationships ...
0
votes
1answer
2k views
Database role membership setting for a Report Manager data source
I am developing SQL Server Reporting Services (SSRS) reports on SQL Server 2008 R2 and using Report Manager as a method to demonstrate and test reports. I am looking for a way to allow users of the ...
2
votes
1answer
106 views
Automatically view specifc database in Management Studio
We have an SQL database that is hosted remotely and I use SQL Server Management Studio to manage everything. Being that we are on a shared server there are many other databases on the same server. ...
0
votes
1answer
290 views
Sql Server 2008 R2 Management Studio Yet Another intellisense issue
I have some issue I can't find any info about!
I did a clean install, and VS2010 was not yet installed when it occured!
My colleagues don't seem to have this issue while having exactly the same ...
0
votes
1answer
2k views
SQL Server Express unable to attach or delete mdf file
My database file Whist.mdf was attached to a SQL Server Express through Management Studio, but it stopped working in that sense that NHibernate in my asp.net solution fired some connection exceptions. ...
0
votes
1answer
886 views
How do I save results as xml in Sql Server Management Studio?
I am trying out TDD and to create Fake objects I want to use XML from the test DB. Thus I want to create XML of the results of a query, which I am running in Sql Server Management Studio.
But I am ...
4
votes
2answers
2k views
SQL Server 2008 management studio intellisense auto refresh (not manually through menu or Keyboard shortcut)
The intellisense feature in SQL server management studio was long overdue (it was difficult especially for those used to Visual studio intellisense) and great to see that it is added in SQL Server ...
0
votes
1answer
259 views
Query window popup help how do i add it?
Hi guys i need help with something really trivial about the query window in SQL 2008.
When I write a command and/or declare a variable I want the pop up help like the one in VS2010
to appear like when ...
1
vote
1answer
3k views
SP1 update for Visual Studio Express 2008
I was trying to install SqlServer 2008 and got an error saying, that my Visual Studio (namely Visual C# 2008 Express) was not up-to-date, and it required VS 2008 SP1. The only update I have found on ...
-1
votes
1answer
4k views
How can I download Microsoft SQL Server Management Studio Express 2008 [closed]
I installed visual studio 2010 ultimate and I am trying to download Microsoft SQL Server Management Studio Express 2008, cause it installed sql server express 2008, but the management studio didnt ...
1
vote
3answers
5k views
SQL Server Management Studio Express and MySQL?
Is there a way to use SQL Server Management Studio Express together with a MySQL database? I guess even if it works, intellisense wont work?
Thanks!
0
votes
1answer
347 views
How can I be sure that Management Studio Saves my Script in ANSI format?
Is there a way to check/set SQL Management Studio so that it saves my scripts in ANSI format but not any other formats like utf8 or so?
1
vote
1answer
78 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 ...
0
votes
2answers
985 views
Many to many relationship with SQL Management Studio
I have the following datatypes - House, Owner, with the primary keys houseID and ownerID respectively.
An Owner can have many Houses. And a House can Have many Owners. So I created an intermediate ...
4
votes
1answer
89 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 ...
0
votes
3answers
549 views
Can I generate an INSERT statement in SQL Server 2008 with the selected values?
If I am selecting a whole row from the Results pane of the SQL Server Management Studio 2008, is there a way to create an INSERT statement script automatically that can INSERT a new row with the ...
0
votes
3answers
397 views
How to show results of DDL statement (like Oracle does) in SQL Server Management Studio?
Is there a way to show the results of DDL statements such as CREATE/ALTER; after they are "run" in the query window?
By default it just shows "command(s) completed".
Is there a way to see ...
0
votes
0answers
190 views
Turn on SQL Server Change Tracking in a SQL Compact 3.5 Database
Is there a way to enable change tracking in a SQL Compact 3.5 SP2 database from Visual Studio or SQL Server Management Studio? The best I have been able to find is this link, but as I go through the ...
1
vote
1answer
35 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 ...
3
votes
3answers
7k views
Why Intellisense doesn't work in SQL Server Management Studio 2008 R2?
I have SQL Server Management Studio 2008 R2.
I have tried these:
Tools->Options->Query Execution->SQL Server->General, make sure “By default, open new queries in SQLCMD mode” is unchecked
Go to ...
1
vote
2answers
660 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 ...
-2
votes
1answer
83 views
SSRS Management Studio SQL no record [closed]
As I am splitting the Data by 'Project' and 'RFC', if no record exists for a particular Service in say May that is classed as RFC then I am getting 2 blank records in my report for that month.
If you ...
0
votes
1answer
99 views
How to remove unwanted scheme named from SQL Management Studio 2008 R2
I have nearly 15 SQL Instances names in the Database combobox of SQL Management Studio, now i am using only one and want to remove all the others from that combobox..
They should either be stored in ...
0
votes
2answers
2k views
Month to Date in SQL Server 2008
Hopefully this will be an easy one to answer.
I am working on a table that requires MTD data. One of our SQL guys told me to use
MONTH (@monthtodate)= 11
Where @monthtodate is set to GetDate() ...
0
votes
2answers
97 views
SQL Server fails to connect to database on client
I have installed SQL Server 2008 R2 Express on a Windows Server 2008 R2 machine, and now when I want to open that database using SQL Server Management Studio on the client machine it fails to open.
...
2
votes
3answers
60 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 ...
1
vote
1answer
293 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 ...
2
votes
2answers
14k views
Cannot connect to database,.Login failed for user
Yesterday my database was connected perfectly.
We have installed Windows Server 2008 R2 on our server and the I have added the user to the client PC name SMTECH5 with user jangid
Now my database is ...
1
vote
5answers
3k views
cannot connect to local sql instance
I am trying to connect to my local sql server 2008 instance. I am using sql server management studio 2008 R2. logindetails:
servername: .\SQLEXPRESS
authentication: Windows Authentication
...
2
votes
1answer
781 views
Database Manager for SQLite
In work we are gearing up to use SQLite in one of our projects due to its ease of use and deployment story. We have been looking around at different management studios and so far have settled on ...

