Tagged Questions
0
votes
0answers
45 views
SQL Server 2008 Management Studio - can't find “Edit top 200 rows”
I am using SQL Server 2008 Management Studio. I have quite a lot of experience with it, but now it's the first time I'm creating a new database from the scratch.
I've created some tables, but I can't ...
0
votes
0answers
12 views
Removing partitions from the cube in SQL Server Management Studio
How can I remove several partitions at once from the Cube using SQL Server Management Studio?
I remember there was a Partitions manager which allowed to select several partitions, but cannot find how ...
1
vote
1answer
31 views
SQL Server Management Studio as MMC Snap-In
Is there any MMC snap-in for the SQL Server Management Studio 2008/2012 ?
I know that there is a snap-in for the SQL Server Configuration Manager, but that is not what I need.
I want to make queries ...
0
votes
0answers
29 views
Why getting error with stored procedure?
I have two stored procedures that are building basically the same table that is used in building a tree to show the information. The only thing that is different in the two stored procedures is that ...
2
votes
2answers
27 views
Any consequences when re-creating a table?
If I want to extend a column length from 30 to 60 characters for a varchar column in SQL Server Management Studio, I have to uncheck the box Prevent saving changes that require table re-creation.
Are ...
1
vote
1answer
21 views
SQL server convert entire table to a script?
I want to create my ENTIRE table as a script - columns, constraints, rows etc. as a script in SQL server management studio. How do I do this ?
3
votes
1answer
91 views
SQL frequency of event
I've been asked to report the frequency of contacts for our clients i.e. how many of our clients are seen on a weekly, monthly, quarterly or annual basis.
When "frequency" is discussed in forums they ...
0
votes
2answers
630 views
SQL Server 2008 Management Studio Not Showing Database
I've got a fresh install of Windows Server 2008 R2 SP1 and just installed SQL Server 2008 R2, including SQL Server 2008 R2 Management Studio.
When I go into Management Studio, it does NOT show the ...
0
votes
0answers
58 views
Script Files open up another instance of SSMS
I have been experiencing weird behavior with how my Sql Server handles script files.
When I click on a .sql file, another instance of SSMS fires up. If I click on another, 3.rd instance fires. All of ...
0
votes
3answers
668 views
Transfer data from one SQL Server table to another
For example I have one SQL Server database that contains a table
Id Address
1 England,London,someaddress
2 Germany,Berlin,someaddress2
And I have another SQL Server database that ...
1
vote
2answers
305 views
1:1 relationship in SQL Server Management Studio 2012
I want to create a 1:1 relationship in SQL Server Management Studio 2012, please help me, can't find the correct way, every time I try it creates a one to many relation.
1
vote
0answers
139 views
Moved to 64-bit Win7 desktop, using 32 bit SSMS, certain XML fields not coming back consistently
Just got moved to a new Win7 64-bit desktop. I'm running the 32 bit version of SQL Server Management studio against a SQL Server 2005 DB server (not my choice, that's what was installed).
If I query ...
1
vote
2answers
443 views
Conversion from 'uniqueidentifier' to 'int' is not supported on the connected database server
I'm about to migrate my database from using old membership to the one included in mvc4, which uses int instead of guid.
When changing the type I get following error:
Conversion from int to ...
0
votes
1answer
63 views
Executing a raw sql command needs always the schema + tablename in sql management studio
When I am executing a SQL statement like:
Delete From [dbo].[User]
this works fine.
When I execute this statement also in my SQL Server 2012 Management Studio:
Delete From User
it does not ...
0
votes
1answer
97 views
Migrate SQL Server 2000 data to SQL Server 2008
I want to migrate 2 database from my old SQL Server 2000 to my new server with the 2008 version.
I do that with the Management Studio 2008 with the export data task. It works fine and no error occurs ...
1
vote
3answers
366 views
Quick way to modify MS SQL stored procedure
I need to edit Microsoft SQL stored procedures frequently and i found the traditional way (Open MSSMS -> expand the databases tree, expand the stored procedures tree and define filter by the name of ...
0
votes
1answer
225 views
How to see in which column data truncation has happened
Inserting data into a Microsoft SQL Server database using Java, I got an SQL truncation exception. But the exception doesn't show which column had the problem value.
Is there any way to find the ...
3
votes
5answers
406 views
Query to select all databases then run another query on the result
*******EDITED*****
I have multiple sql servers with around 200-300 dbs in them and want to save space on my server.
I would like to run a shrink routine on all databases in my sql server by ...
1
vote
1answer
60 views
Export SQL Server database with everything related to it such as logins
How can I export a SQL Server database with everything related to it such as Logins/Users to use/import on another server? I think Generate Scripts... might be a good idea but what options should be ...
0
votes
2answers
56 views
immediate deleting database despite the open connections
I have a live database that has existing connections. I want to delete this database regardless of any open connections.
I use SQL Server Management Studio.
What is the bast way:
detach command ...
0
votes
1answer
140 views
Update Asp Net MVC Model after changing Sql Server Database
I have created a model from a existing Sql Server db and I was curious if there is a way to update a existing model if I make changes on my sql db structure?
I mean, if I create a table using Sql ...
0
votes
1answer
291 views
ROW_NUMBER() in a view in SQL Server 2005
I have tried the following query in Microsoft SQL Server Management Studio:
select
ROW_NUMBER() OVER(ORDER BY ret_id, dep_id DESC) AS 'Row Number'
from
Round_Trip_View
and it works.
I ...
2
votes
1answer
314 views
SQL Server 2008 trace query and output (record rows) of query execution
I want to programmatically trace and save all queries and outputs (record rows) of queries execution in SQL Server 2008 R2.
I've easily implemented a query grace program based on TraceServer class of ...
2
votes
1answer
1k views
Where to get Microsoft SQL Management Studio when using Amazon RDS SQL servers?
My company is interested in using Amazon's RDS service for our Microsoft SQL Server Web Edition. However, we are a bit confused on how to actually connect to the database to initialize it.
In the ...
0
votes
1answer
113 views
Closing Management Studio Query - Sleeping Process [closed]
When I close a query (after running it) in Management Studio SQL2008 R2, the processes remain as "sleeping", "AWAITING COMMAND". I have to manually kill them to get exclusive access. This is on my dev ...
0
votes
0answers
46 views
Using @startdate and @enddate in sql [duplicate]
Possible Duplicate:
Prompt for parameters with SQL Management Studio
I have a query where i use @startdate and @enddate in the sql and if I run this on a colleagues PC he gets prompted to ...
0
votes
1answer
162 views
SQL Server 2012 SSMS with SQL Server 2008 R2 database engine
I use SQL Server 2008 R2 as the database engine. With my MSDN subscription, I can get SQL Server 2012 for development use. Since I noticed some cool things in 2012 SSMS, my question is that if I only ...
0
votes
2answers
2k views
Clarification as to why EXECUTE AS USER/LOGIN is not returning the expected results?
I am running the following query against a database:
execute as user = 'domain\username'
select * from fn_my_permissions(null, 'DATABASE')
order by subentity_name, permission_name
revert;
But the ...
2
votes
1answer
67 views
What determines the number of tables SQL Server Management Studio can import in parallel
In the following screenshot, SSMS only copies rows for ONE given table at a time :
It is clearly able to perform multiple copies at a time (in which case you would see several "Copying rows" ...
0
votes
3answers
329 views
Standard template in SQL Server Management Studio
I am working on a team that have a number of developers working with SQL Server, developing stored procedures, functions etc.
I would like a consistent layout between the SQL, same header with a ...
3
votes
2answers
1k views
How to determine the effective permissions for a user of a SQL Server database through C#?
When I say effective permissions, I'm referring to the permissions listed when you go into the properties of a database in SQL Server Management Studio, click "Permissions", and then click the ...
3
votes
2answers
244 views
Modifying numbered procedures in Management Studio 2012
I created many numbered stored procedures in SQL Server 2008.
Their names are e.g.: dbo.ProcName, dbo.ProcName;2, dbo.ProcName;3,...
When I use rightclick on procedure name in procedures list in ...
1
vote
2answers
1k views
SQL Server : aggregate functions and GROUP BY in long queries [closed]
I was writing a query the other day in SQL Server, and had to get a sum of a column added to the query.
Now, the query I had to add the sum column already had about 20 selected columns.
In order for ...
0
votes
3answers
1k views
Sql Server Management Studio: table locked due to select statement
Given the following scenario:
A select statement is executed from Sql Server Management Studio (2005, 2008) to retrieve a large resultset. This is not done by choosing 'Edit top 200 rows' from the ...
2
votes
3answers
842 views
How to find matching begin and end statements in SQL Server management Studio 2012?
How to find matching begin and end statements in SQL Server Management Studio 2012? I have a very long stored proc with several levels of multi page nested if statements. The SQL is already ...
0
votes
0answers
79 views
SQL Server text layout changes when going to Query Editor
Can someone help me with this? When I write a query in SQL Server Management Studio 2008 or do a select top 1000 it looks like this:
SELECT TOP 1000 [COLUMN_1]
,[COLUMN_2]
,[COLUMN_3]
...
0
votes
0answers
61 views
Updating New Storeprocedure from SSMS 2008 is not working as expected
I was trying to update the 'New Store Procedure...' from menu in SSMS 2008, but is not working as expected, I found how to do it but externally to the SSMS:
Customise default 'New Stored Procedure' ...
0
votes
2answers
105 views
How to batch database modifications from SQL Server Management Studio
I'm struggling to figure out how to batch modifications to our databases in SQL Server Management Studio. We'll perform actions like editing columns, creating tables, renaming tables, etc. that we ...
1
vote
2answers
2k views
Debugging in SQL Management Studio 2012
I'm using Management Studio 2012 but I'm not able to debug any SQL code. After I hit the Debug button I'm not getting any green arrow on the left side and none of my SQL object are being loaded to the ...
1
vote
3answers
74 views
update table column from a second database
I've followed examples from other posting to achieve this but am getting the following error:
The objects "otherDB.dbo.someTable" and "someDB.dbo.someTable" in the FROM clause have the same ...
-1
votes
1answer
43 views
inner joins producing erroneous results for no clear reason
I am getting strange results from inner joins. Here is the SQL:
SELECT cm.PersonID
FROM dbo.vwCommitteeMembers cm
-- first join
INNER JOIN dbo.vwCommitteeTerms ct
ON (ct.CommitteeID = ...
3
votes
3answers
381 views
code template in management studio
Can I find in management studio the Following feature?
I want to write a specific word and that it be replaced by a statement specifies. Ex: I write "ss" and replace "select * from" or write "johnid" ...
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 ...
1
vote
2answers
880 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 ...
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
569 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
636 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
2answers
167 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
107 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. ...


