Tagged Questions
0
votes
2answers
85 views
How to arrange rows of a table in ascending order and to save the table simultaneously?
I want to create a new table by arranging the rows in ascending order from the existing table. The code I am trying to use is:
SELECT *
INTO new_table
FROM existing_table
ORDER BY col1, col2
...
0
votes
2answers
34 views
Update a single table based on data from multiple tables SQL Server 2005,2008
I need to update table one using data from table two. Table one and two are not related by any common column(s). Table three is related to table two.
Ex : table one(reg_det table)
reg_det_id | ...
0
votes
1answer
23 views
Update DATETIME values to <= GETDATE()-1
I'm looking to update existing DATETIME values to yesterdays date and previous depending on their DATE order but keep the TIME part as it is.
For example assuming today's date is 2013-05-15 ...
0
votes
1answer
35 views
Pivot with a table variable
I'm unable to use a pivot the data of a table variable.
Its giving following error on run-time:
"Must declare the scalar variable @reportData"
I have tried as mentioned below
DECLARE @reportData ...
0
votes
1answer
22 views
Linq DataContext.CreateDatabase() force SQL Server 2005
I'm using Linq DataContext.CreateDatabase() to generate a database. Currently it's generating a SQL Server 2008 database. I would like to know if it's possible to make CreateDatabase() generate a SQL ...
2
votes
2answers
67 views
SQL where Date from today minus and plus days
and I have codes like this:
select CUS_Id, CUS_Name, CUS_JoinDate
from CUSTOMER
where CUS_joinDate between '04-12-2013' and '06-12-2013'
How can I make it 'where' CUS_JoinDate will be ...
-2
votes
0answers
30 views
I have joined for four tables and i want use Combined cumulative for some columns in SQL Server?
select plitno, A, datils, 0, 0, 0
from table1
union all
select critno, 0, 0, B, 0, 0
from table2
union all
select klitno, 0, 0, 0, C, 0
from table3
union all
select bgitno, 0, 0, 0, 0, D
from ...
-2
votes
1answer
63 views
Combined cumulative for each row and each column in sql server? [closed]
I want to add a column in my table, for example to calculate the Combined cumulative :
a b c d newcoulmn
50 0 0 0 50
0 7 0 0 57
0 0 ...
1
vote
0answers
69 views
SQL Server: Query fails with dynamic SQL, linked servers and triggers [closed]
I'm getting the following error when I execute an insert query:
OLE DB provider "SQLNCLI10" for linked server "Production" returned
message "The partner transaction manager has disabled its ...
1
vote
1answer
41 views
unpivot a columns to generate rows
I have a query like this:
SELECT '35111212', '11245452', '42215512'...... and mor values.
This results
(No column name) (No column name) (No column name)
-------- -------- ...
-1
votes
0answers
24 views
which edition of sql server is good for Handling Multiple Database(users) [closed]
My query about sql server 2008 Edition ,
I want to know about which sql server edition is good for on VPS hosting (which host to many web application/website which have sql database...)
I think the ...
0
votes
1answer
45 views
Adding a new column in this SQL Query?
I am querying data from the WIP and Employee tables:
WIP
Id,Name
Employee
Id,Name,Orgnization
Joining both I can query:
select w.ID,e.Organization,w.ConsultantName,e.OrganizationID, w.ConsultantID
...
0
votes
1answer
30 views
How to create multiple REMOTE SQL servers easily?
I want to create 4-5 REMOTE SQL servers for a learning purposes. I want to avoid all installation, admin, troubleshooting tasks. I want all this FOR FREE.
How do I do this ?
The purpose behind ...
0
votes
1answer
25 views
Migrating multiple SQL Server 2005 databases to SQL Server 2008
I have a development server running SQL Server 2005 with 75+ databases on it. I will be installing a new SQL Server 2008 and want to migrate all the databases over to this server.
Does anyone have ...
2
votes
1answer
51 views
What are the differences between the older row_number() and the newer OFFSET + FETCH based pagination in SQL Server?
I have few questions in context of the older row_number (SQL Server 2008) and the newer OFFSET + FETCH (SQL Server 2012) paging mechanism provided by SQL Server 2012.
What are the limitations with ...
0
votes
2answers
46 views
Technique to convert database to sql script?
I want to convert a database into an sql script
so that i can recreate it elsewhere. I want the copy to be same as original.
How do i do that ?
0
votes
4answers
60 views
How to migrate a database from SQL Server 2005 to 2008 as is?
I want to migrate a database completely or partially. Right now, I will do a complete database. Partial will be posted as a separate question.
Strategies I am considering:
copy database wizard
...
-1
votes
1answer
43 views
ORA-29532: Java call terminated by uncaught Java exception- 2005-2008 migration error
I am using a C# application which will use both oracle and SQl 2005 for db connection. Recently we are migrating our SQL Server 2005 to Sql 2008. When i try to import my table to sql database using ...
0
votes
1answer
84 views
SQL Server Stored Procedure to generate a Code based on firstname and lastname
I'm new to SQL Server stored procedures. I was wondering how to go about writing this stored procedure. The scenario is:
The procedure takes firstname and lastname as parameters, on basis of that it ...
1
vote
0answers
34 views
SQL Server web service query character limitations
I am writing a procedure take the data from the web service. The web services gives the data in an XML string. However, It is truncating the data being pulled from the website. It runs perfectly when ...
2
votes
2answers
97 views
how to call a stored procedure in where clause of SQL
I have a T-SQL script, requirment is I need to call a stored procedure in where clause. This stored procedure accept a parameter and returns a bit result. Kindly guide me how to do it.
Thanks
Edit:
...
-2
votes
1answer
53 views
Searching an MS SQL database for a specific word [duplicate]
I've been scouring online for an example of how to do this but haven't found anything at all. All the queries I've found assume you know what table you want to search.
I'm looking for a SQL query to ...
-1
votes
5answers
49 views
Multiply the last two digits
I need to convert and multiply the last two digits of a string.
how can I do this?
My formula is (x * 60) / 100
DECLARE @find varchar(30)
SET @find = '16,81'
SELECT @find
The value of I need is ...
0
votes
1answer
65 views
Looping each record of a table and inserting data into a temp table joining another temp table in SQL
I have two temporary table #CoreUtilizationForRole1 and #RoleID2Details. I want to insert values into a third temp table using these two temp table.
Below are the table Structure of both the Temp ...
2
votes
3answers
113 views
Concatenate 2 numbers in SQL Server
I'm in need of a function to concatenate 2 numbers in SQL Server
eg
getuserid(3,333) = 3333
getuserid(8,5) = 8005
getuserid(2,11) = 2011
It should return the result based on the length of second ...
0
votes
1answer
39 views
duplicate values to be shown as null in sql server
I'm new to sql servers, I have a table as follows
**Emp_name | year | rank **
emp1 2010 1
emp1 2011 2
emp1 2012 3
emp2 ...
-1
votes
0answers
19 views
Securing of Data - SQL Server 2008 [closed]
I have taken over a new database and trying to understand how secured the data within it. What is the industry standards for securing data within the database. How to identify the vulnerable areas?
...
1
vote
0answers
69 views
SQL Server 2008 get file from ftp
We used SQL Server 2005 with the queries shown and bat file, but after passing to SQL Server 2008 64-bit we get some errors. When I searched it, people recommend to use SSIS, so I did but I can't get ...
-1
votes
1answer
115 views
How To make Auto Number in sql server with combination Year mont
i want to make auto number in sql server like this
BK/201304/0002
BK : Just Inisialisation
2013 : is a year
04 : Month
0002 : is increament and back again if the month is change
thanks
0
votes
2answers
42 views
How to check SQL Server 2008 script will work properly on SQL Server 2005
Is there a way (a tool) to check that a SQL Server 2008 script will run on SQL Server 2005?
1
vote
1answer
44 views
logging ONLY effected rows in sql update procedure
I have a procedure that updates x amount of rows in a table. I have created a log table that will have records of all the updated rows. So each time i run my procedure and it effect eg. 5 rows, these ...
-6
votes
1answer
177 views
Merge two tables (sql server) from two different Databases using c# [closed]
I am trying to merge two tables in two different databases which may or may not belong to the same server. I am developing code in c#. At first, I tried to use dataadapter and dataset to copy the ...
0
votes
3answers
74 views
looping through rows using SQL procedure
I have two tables which looks like this:
Table1(ID, name, street, houseNo, DeliveryID) and Table2(ID, name street houseNo, DeliveryID)
I want to create a procedure that checks the contents of ...
0
votes
4answers
43 views
What is the syntax meaning of RAISERROR()
Hello everyone, I just created a Instead After Trigger whose syntax is given below:
Create trigger tgrInsteadTrigger on copytableto
Instead of Insert
as
Declare @store_name varchar(30);
declare ...
0
votes
4answers
125 views
Get MAX and MIN values of each rows in sql server
I have a set of rows with values
I want the following OutPut with individual Max and min values
Sorry for the poor prntsceen. i dont know how to draw tables in stackoverflow.
-2
votes
1answer
65 views
How do I determine employee's most current dateofEntry?
Each employee is given an opportunity to record date of visit up to 3 visits.
How do I determine employee's most current date of visit and add 3 years to it?
I tried the following:
select top 1 ...
0
votes
1answer
86 views
Displaying progress of time consuming SQL Server stored procedure (or query) in wpf UI
I am developing a Windows application using WPF and this application uses MVVM. In this application I need to deal with time consuming SQL Server queries or stored procedures. Now I want to display ...
1
vote
3answers
75 views
Count and Group By for products sold
I have a table Transaction & a table product as below .
Each Transaction has multiple products.
ProductId Name
1 ABC
2 DEF
3 GHI
Each transaction can have ...
1
vote
3answers
138 views
Dynamically Create tables and Insert into it from another table with CSV values
Have a Table with the CSV Values in the columns as below
ID Name text
1 SID,DOB 123,12/01/1990
2 City,State,Zip NewYork,NewYork,01234
3 SID,DOB 456,12/21/1990
What is need to ...
0
votes
1answer
93 views
How does SQL Server compare a date to a string literal?
I am modifying a query, here is my script:
select
CASE When EndDate='1/1/1900'
THEN NULL
ELSE EndDate END,*
from Members
This script simply compares date, if it is '1/1/1900' then returns null ...
0
votes
1answer
22 views
sql server 2005 management error
I have an application that use the DBMS Sql server 2008 express. I use to manage my databases the Microsoft Sql Server Management Studio express 2005.
I create new Database and i'd lik to add to it ...
0
votes
1answer
71 views
“String or binary data would be truncated” Error in Delete Command
I am getting this error while trying to execute a delete command in a stored procedure:
String or binary data would be truncated
Is it possible to get such error in delete command? If yes then ...
0
votes
1answer
36 views
Fail to connect to Microsoft sql server
I'm trying to connect a php script to a Microsoft SQL Server, Additionally I'm doing some testing on my own to learn more about php and servers.
if(function_exists("sqlsrv_connect"))
{
echo ...
0
votes
1answer
60 views
Sum of count records
I am using sql server 2008 R2. I am having a table in database that contains data regarding patients that are of different status like Active, Completed, Inactive etc. I am asked to get the patients ...
2
votes
1answer
208 views
the version of sql server in use does not support datatype 'datetime2' [duplicate]
My development server is MS SQL Server 2008 and visual studio 2012. The project works fine when i run it on local but when i try to run the same project on server then it gave this error and doesn't ...
0
votes
1answer
39 views
How to combine sys.dm_exec_query_stats and sys.dm_tran_locks to combine the result
Sqlserver 2005-2008 query to find out dead locks and identify query text
I have following query which can give me lock status also tells me command which causes lock
SELECT
...
0
votes
0answers
37 views
Is there any equivalent in MongoDB for MS-SQL command 'SET IDENTITY_INSERT tablename OFF'? [duplicate]
I was trying to update a _id field of a document in MongoDB.
The following is the command I derived based on my understanding.
...
0
votes
0answers
95 views
SSIS Package with Excel Destination -> works on local machine but not on server
I've developed a simple SSIS package, that queries a table and saves results in an excel file that is named dynamically(using SSIS expressions on Excel connection manager). The package works like a ...
1
vote
1answer
47 views
sql server restore to newer version, index best practice
I'm at a site where they are upgrading a sql server (data warehouse) from 2005 to 2008. My understanding was always rebuild every index and update all your statistics after a restore from a previous ...
0
votes
2answers
75 views
Need help to modify my SQL query
I want to modify my existing SQL query (number 1) given below. Firstly, I need to know if it is possible to do what I want (number 2). If yes, then what are the ways I can do it.
--**(Number 1)** ...









