Microsoft SQL Server Management Studio
0
votes
1answer
23 views
Can't access database from application when SSMS is open
When SSMS is not running I can read and write to my database fine. However when I start up SSMS and browse to my database, my application cannot access that database (Error: Cannot open database ...
0
votes
1answer
13 views
How to connect Adempiere (or any PostGreSQL) to SSRS 2012 Express?
Has anyone connected Adempiere (ERP) (or any PostGreSQL db) to SQL Server 2012 Express?
There used to be an IT manager to help me out with this, but now i'm left alone with this.
I downloaded the ...
1
vote
1answer
40 views
How to change data type in SQL Server?
I have a SQL Server 2008 database file (.mdf) I want to change some data type like from float to int or something like that but I get this error :
How to fix it?
0
votes
1answer
14 views
Using a Database Scalar-valued Function in Report
Being new to using a reporting services tool I have found myself stuck in a few places. One of which is the following: All of the reports that are already in the solution that I am adding my report ...
1
vote
1answer
13 views
Use an If or Case statement to create an amended field for a new view in existing db in SSMS2008
New Field = If Field X = 0 and Field Y = 12 THEN 15 ELSE New Field = Field X
The following worked fine in ACCESS,
Amended Run No: IIf([001_DETAILS]![tlRunNo]=0 And ...
0
votes
1answer
30 views
SSMS float and decimal presentation
I'm having a little bit of trouble understanding output format in SSMS.
Tablea:
fielda = float
fieldb = decimal(18,6)
SQL:
select
sum(cast(fielda as decimal(18,6))) a,
sum(fieldb) b
from ...
0
votes
2answers
18 views
CTRL+R does not hide the Query Result window in SSMS 2012
I just upgraded from SSMS 2005 to 2012. Previously, I could hit CTRL+R and the Query Results windows would disappear.
After I upgraded to SSMS I ran a query and, out of habit, hit CTRL+R. Nothing ...
0
votes
1answer
58 views
SQL SERVER 2008 new query window insert float using comma (,)
For some things I use new query window in our MS SQL Management Studio (Version: 10.0.1600.22 (SQL_PreRelease).080709-1414).
I try to insert some data, and I can not use comma (,) when I try to ...
0
votes
2answers
36 views
Create a variable in Vertica
I am transitioning from SQL Server to Vertica. Is there any comparable way to create a variable?
Usually I do something like:
Define @myVariable int
Set @myVariable = select MAX(Field1) from ...
0
votes
0answers
18 views
Reason why data returned is different. SSMS 2012
I'm pretty new when it comes to memory issues with SQL. Our company currently has SSMS 2012 (we updated from SSMS 2008 R2).
I'm running a procedure in SSMS 2012 that has two cursors. Within the ...
0
votes
2answers
48 views
Checkbox in SQL Server Management Studio
I have a form in my application which has several text boxes and I agree checkbox. In database I have to insert the data when a users fill the form. I know how to insert data from text box and other ...
-1
votes
1answer
29 views
Need to open SQL Server Management Studio 2008 from “Run” menu [closed]
I tried to open SQL Server Management Studio 2008 by typing ssms in "Run" menu.
But it wont open.
It shows
windows cannot find 'ssms'. make sure you typed the name correctly, and try again".
...
0
votes
3answers
33 views
sql select most recent datetime for each member
My brain refuses to cooperate with me today to actually think this through properly so I was hoping to get some feedback: I want to return a single record from each member for their most recent ...
0
votes
1answer
6 views
SSMS not able to access VS database permissions issue
I just reinstalled SSEE 2008 R2 and finally have the service running and SSMS is able to open and create databases.
My problem is that I can no longer navigate natively to my websites folder under ...
2
votes
1answer
34 views
C# SendKeys and Microsoft SQL Server Management Studio 2012 (SSMS)
Solved! See [SOLUTION]
Thanks for any help you can provide. It's much appreciated!
In a nutshell: I'm trying to send Ctrl+V to SSMS 2012 with SendKeys.Send("^{v}"), but it doesn't work. It's working ...
0
votes
1answer
31 views
Sql If statement based on COUNT return
Basically, I am looking to modify a stored procedure that I have in my database already that updates a table's records (table x) with data coming from a web application. After updating table x, I ...
0
votes
0answers
22 views
Problems reinstalling SQL Server 2008 Management Studio
Well I've recently uninstalled my SQL Server 2008 to reset the input of the username used while doing the installation. The problem is that I try to reinstall it but it keeps gathering information of ...
0
votes
1answer
44 views
TSQL Getting the ident_current of a view this uses joins
Using the following queries, I am trying to understand why I am able to get the ident_current on one view, but not the other.
Here is some sample data:
create table temptable1 (id int identity(1,1), ...
0
votes
1answer
26 views
Deploying Data-Tier Application (DAC) which contains multiple Composite Databases Fails
I have a SSDT Project (call it ConsumerSSDTProject) which references one Same Server/Different Database project (contains stored procedures to "extend" master; MstExtSSDTProject), and two references ...
0
votes
1answer
68 views
Why is the SSMS GUI so slow and what can I do to fix it? [closed]
I use SSMS 2005 to do a lot of SQL work. Numerous people have asked questions regarding speed issues in SSMS but I can't find a good answer to this type of problem. Specifically, there seems to be a ...
0
votes
0answers
43 views
Passing a giant xml parameter to stored procedure
the create script for the stored procedure is as follows.
CREATE PROCEDURE [dbo].[storedprocedure]
-- Add the parameters for the stored procedure here
@Mappings XML
AS
BEGIN
......
END
...
0
votes
2answers
19 views
microsoft sql server mangment
I have a problem when I try doing attach to db.
how can I fix it?
thank.
1
vote
0answers
51 views
How do I get SSMS intellisense to keep my temp tables when I change DBs?
When I select into a temp table, after changing databases intellisense no longer recognizes my temp table.
The interesting thing is if I create the table via a create table query the temp tables ...
0
votes
2answers
43 views
SELECT by certain bytes of a binary
Is there a way to perform something like the following SELECT?
SELECT * FROM TheTable WHERE 3rd_to_5th_bytes_of_column_A = 0x010101;
And if there's a serious performance issue - please let me ...
0
votes
0answers
37 views
Performance of variable-length types
Is there a significant (say, >10%) penalty in reading speed of variable-length types (varchar, varbinary) as opposed to fixed-length types?
Scenario: instead of using varchar, I can use char(30) ...
0
votes
0answers
88 views
SSIS Package Fails with Error “must install lookup of integration services or higher”
I am trying to run an SSIS package from Sql Server Management Studio (SSMS) and get the following error upon execution. "To run SSIS package outside of SQL Server Data Tools you must install Lookup of ...
0
votes
1answer
36 views
Restoring SQL backup fails - Access is denied
Solved. See my answer (but first see my second edit to the question).
I'm trying to restore a backup for a database from one computer on another - thereby copying the db, but I get this message:
...
0
votes
1answer
29 views
Cannot connect to Reporting Services 2005 Server from SSMS
We have SQL Server Reporting Services 2005 (SSRS) installed and running just fine. I can connect via SQL Server Management Studio 2005 using "Connect -> Reporting Services" and "Windows ...
0
votes
1answer
48 views
Export Multiple Query Results to Single Excel File
I ran a sp in SSMS and it gathers information from 50+ databases with the exact same structure. I am pulling results such as CustomerName, NumberOfUsers and VersionofCode. When I execute the ...
4
votes
2answers
56 views
Is there a way to alter the design without creating table from scratch? [duplicate]
I'm creating a database in SQL Server Management Studio which contains some tables plus stored procedures, now I have set all relationship between all tables but I want to alter something in the ...
1
vote
2answers
22 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
-1
votes
0answers
21 views
SQL Server in Visual Studio and Management Studio [closed]
I am a newbie... so I need to understand this:
I installed Visual Studio 2010, and later I installed free SQL Server Management Studio.
I tried some tutorials in Visual Studio 2010 .. and in ...
1
vote
1answer
30 views
How to select the last 5 records per group
I am doing a query that looks at each part transaction within a certain time period. Depending on the part, it could have maybe just 1 transaction or upwards of 1000 transactions. I need to only ...
0
votes
1answer
17 views
Remove initial dialog in SQL Server Management Studio
I'd like to remove the initial "Connect to Server" dialog that pops-up at the startup.
As I prefer using the "Registered Servers" list to access my servers, that dialog is simply annoying.
I'm using ...
0
votes
0answers
39 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 ...
0
votes
0answers
51 views
SUM YTD calculation differ in SSRS compared to SSMS
I am trying to calculate the SUM & YTD but something goes wrong then moving the query to SSRS. I works fine in SSMS:
with member
[Measures].[YTD] as
aggregate(YTD([Dim ...
0
votes
1answer
126 views
SQL Server : computed column error in dateadd formula
These are the columns (simplifying):
myDate as Date
theMonths as int
Then I create a computed column finalDate in Microsoft SQL Server Management Studio 2008 R2, with this formula:
(dateadd(month, ...
0
votes
1answer
25 views
Edit arbitrary database values with the SQL Server Management Studio GUI
In MySQL Workbench, as long as you can display a row, you can edit it by typing in the cells.
Is there any way to do that with SQL Server Management Studio? SSMS seems limited to providing a GUI ...
0
votes
1answer
34 views
One script file of all objects of database want to put it into source control?
I have one script of database SQL server which contains all objects.
I want to push this script into source control which TFS where each object should have seperate file .
how can i do this
0
votes
1answer
51 views
Generating script of database from source control TFS folder
I have database objects in source control like there is separate file of each procedure table and function
I want to create one Database script like which is generate from SSMS though generate script
...
0
votes
2answers
176 views
Using CROSS APPLY for more than one column
Day #3 with SQL Server.
I am trying to combine 2 columns of delimited data into one output from a Table Valued Function. Here is my data:
I would like the data to be processed and placed into a ...
0
votes
2answers
86 views
SQL Server management studio 2012 still using server 2005 instance
I had previously installed SQL Server 2005 and its management tools. Now I have installed SQL Server 2012 and Management studio 2012 along with it. I did not uninstall the previous SQL Server 2005 ...
0
votes
1answer
26 views
Another Multipart Identifier Could not be bound
There are a million of these questions; I have just started working with SQL and I can't seem to drag an answer out of them. I don't understand the context well enough; promise I'll keep this simple.
...
1
vote
2answers
42 views
Returning Minimum ID in Management Studio
Assume the following:
CREATE TABLE #Testing
(
[id] [int] IDENTITY(1,1) NOT NULL,
[store_id] [varchar](3) NULL,
[sku] [varchar](14) NULL,
[qty] [bigint] NULL,
...
0
votes
1answer
57 views
Cannot locate user defined functions in SQL Server 2008
First time using SQL Server 2008 this morning.
I am trying to find a user defined function that I created. I cannot locate it in the "Programmability>Functions" branch of the object explorer. Here is ...
0
votes
1answer
54 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
28 views
Partial copy of table and insert values at same time?
So this is going to be an odd question but I'm going to try and explain it as best as I can in order to assist anybody trying to help me here...
I am presented with a situation in which I am trying ...
-1
votes
1answer
31 views
Conversion issues where they shouldn't be? [closed]
So I've got these two tables that I'm trying to copy data between and according to http://msdn.microsoft.com/en-us/library/ms187928.aspx I shouldn't have a problem doing the conversion but it seems ...
0
votes
1answer
46 views
Database MSDB can not be opened
I have got this problem in local instance of SQL Server 2008 R2 on my machine. There are several databases on this instance. But I am not able to see any of them from the object explorer.
I am able ...
0
votes
1answer
74 views
Convert GUID to varchar(32)
So I'm trying to copy data from one table to another and it so happens that there exist two similar columns from these two tables: table1.colx is a GUID so it is 36 characters in length in total due ...




