0
votes
2answers
45 views

SQL Select, selecting a row off of a column condition

Division Department Dept. Head 1 1 Mr. Anon 2 1 NULL 3 1 NULL 1 2 NULL 2 ...
1
vote
0answers
18 views

Flush print statements to client (SQL Server Management Studio)

Please see the code below: USE [Test] GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[Test] AS BEGIN begin tran begin try SET NOCOUNT ON; DECLARE @ID int ...
1
vote
1answer
21 views

insert multiple rows in single SQL

I am trying to insert multiple rows with SQL statement. For that i refered this question. According to top scored answer in this qestion, i made following query: INSERT INTO login ...
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
1answer
40 views

How to combine this query

In the query cr is customers, chh? ise customer_pays, cari_kod is customer code, cari_unvan1 is customer name cha_tarihi is date of pay, cha_meblag is pay amount The purpose of query, the get the ...
0
votes
1answer
36 views

Convert Sql query into vb script

I have the below SQL query. I wanted to execute the same query in vbscript, but am not able convert it and not getting proper result. Can I get the correct convert format? SELECT distinct CASE WHEN ...
1
vote
3answers
28 views

Can a single statement be surrounded by SET NOCOUNT in SQL Server 2005?

I have a sproc that has a couple inserts and updates. Only the amount of a specific update needs to be returned. I have tried returning or selecting @@ROWCOUNT but because of other selects in the ...
0
votes
2answers
36 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 | ...
2
votes
1answer
44 views

SQL Server : manipulating complex xml into tables

I have some xml which I need to insert into two database tables. The second table (TblSales) must contain the PK of the first (TblDetails.Id). I can insert the data into these tables using XQuery, ...
1
vote
1answer
35 views

Issue with setting default value for a column (sql server 2005)

The following syntax won't work: ALTER TABLE MyCustomers ALTER COLUMN CompanyName SET DEFAULT 'A. Datum Corporation' per url, http://msdn.microsoft.com/en-us/library/ms174123.aspx Error message: ...
-4
votes
0answers
27 views

Want Paging in this stored procedure [closed]

set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go ALTER Procedure [dbo].[Back_Up_Stp_UserWiseSummaryReport] --1,1,'04/01/2013' , '05/15/2013' ( @Dep_Id int, @fbd_UserId int, ...
0
votes
3answers
20 views

sql function not retrieving table and giving error

I have written following function in SQLServer 2005 Following is the function: create function fnBillParticulars() return table as return (select * from billParticulars where Id='2425') go Its ...
0
votes
1answer
20 views

group on 1 column and merge rows

I've got SQL table which looks like this Name | Field     | Value | John  | Country | USA | John  | City       | New ...
0
votes
2answers
23 views

stored procedure declaration error

I am new with stored procedure. I am taking value of column in one variable and checking it with If block. My code for this is as follows: create proc billRet as BEGIN DECLARE @amt float set ...
0
votes
1answer
27 views

Sql Exception 0X80131904 Login failed for user ". The user is not associated with a trusted sql server connection

I'm developing a windows application using c# .Net Framework 4. I have 2 machines; Test and production, connecting to a remote server which has the SQL Server here's my connection string: <add ...
1
vote
1answer
40 views

Cap symbol (^) in LIKE Clause not working properly

See the below example where '1|2|||1|' like '%%|%%|%%|%%|[^3]|' /* it will return true if the string between last two pipe symbols is not like '3'*/ The above code just works fine. In the same ...
1
vote
1answer
18 views

EXEC sp_who2 LastBatch showing future date

I am receiving future dates in LastBatch column when i run EXEC sp_who2 on SQL Server. for example most of the SPIDs have 5/14 as LastBatch date. (which means 2014) And my first 20 row has 04/28 as ...
0
votes
1answer
34 views

Not able to detect error in stored procedure

I am new with stored procedure. I have written the following stored procedure: create proc sp_TaxBrock as BEGIN Declare @intTax int,@intBrockrage int,@sum int set @intTax = (select Tax from ...
0
votes
1answer
41 views

Adding restriction to a SQL Server stored procedure script

How I can add to these 2 scripts below a restriction, so it wont allow creating a hero with less than 3 characters in its name or when changing the name of the hero it wont allow less than 3 ...
2
votes
2answers
70 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 ...
1
vote
2answers
38 views

SQL - trying to exclude cohabitants from dedupe

NEWBIE ALERT I have a SQL Server 2005 table containing customer accounts based on household, so each household has a CustomerCode, like so: CUSTOMERCODE UNIQUEID TITLE FORENAME SURNAME ...
0
votes
2answers
49 views

I still get a “Arithmetic overflow” when I filter on a cast datetime even if I use IsDate()

I have a data set that I need to filter a date that is stored as a string (changing the source column to a DateTime is NOT a option, this data is coming from a 3rd party source that I can not ...
1
vote
2answers
36 views

SQL server 2005 - 3 table conundrum

SQL Server 2005 running under 2000 compatibility mode. I have three tables: Banks, Exceptions and Clients; a client is allowed to trade with any bank except those associated with him on the ...
2
votes
1answer
55 views

How do I use the grouping clause in my select statement with grouping sets?

I just learned of using the grouping sets clause and I believe I can re write one of my old queries. Currently, it is a union of 5 different groupings coming from a CTE. I understand that I should be ...
0
votes
2answers
33 views

Return one table from cursor

Please see the code below: DECLARE @ID int DECLARE @errorflag int DECLARE Warning_Cursor CURSOR FOR SELECT TOP 3 ID FROM Warnings SET @errorflag = @errorflag + @@Error OPEN ...
0
votes
0answers
17 views

How to backup databases to ensure data recovery [migrated]

I have 15 customer databases that have minimum replication at different sites. I currently do nightly back-ups and transfer the database back-up nightly to our main server via 7zip. We recently had ...
1
vote
1answer
42 views

MSSQL - Invalid column name with Java/JTDS and Join

I want to execute the following statement using Java with JTDS in MSSQL 2005. I need it that way, because I want to show the results from position 1-15, 16-30 etc. SELECT TOP 15 WID,AID,de FROM ...
0
votes
1answer
46 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
2answers
32 views

Query Data From Two Tables + One Table Must Only Query Using Most Recent Data

ok, I have one table that I'm querying that has historical data in it that is updated every minute or so. I am pulling the most recent data from it by VehicleKey using the following: SELECT ...
3
votes
5answers
103 views

Finding a better way to do a top 1 per group

I am attempting to find the most recent value per id that is older than 1/1/2013 create table #foo ( id int, value money, entry_date datetime ) insert into #foo values (1, 1.00, ...
1
vote
1answer
35 views

Parsing a time span string in sql

I am reading in from a datasource that is giving me time in a varchar in the format d:h:m:s:f, The day portion is always 0, the column represents a time of day. I would like to add this column to a ...
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
2answers
61 views

Dropping unnecessary indexes - effect on query plans in SQL Server 2005

Below is a portion of the index mess we have on a 2MM record table (SQL Server 2005). Clearly there are opportunities to pear them down. This table has 16 indexes altogether, including a clustered PK ...
-2
votes
2answers
53 views

Store values in Stored Procedure

I created a SP as "SP_SELECT" CREATE PROCEDURE SP_SELECT @userid varchar(50) AS BEGIN SELECT Dept_Id from Master where User_Id=@userid END GO Now the task is I have to store the Result (i.e) ...
0
votes
2answers
57 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 ...
-1
votes
1answer
45 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 ...
-2
votes
3answers
101 views

Null value in SQL Server 2005 table

I'm using a table LOG which has 3 columns: Login nvarchar(50) Date int Logout nvarchar(50) Now if I don't enter a value into the Logout column, then NULL should be stored. But for me it is stored ...
0
votes
1answer
33 views

MS SQL Update Query - Update all rows with that have the same field A to the top A value

this should be easy, but I'm just not getting it. I have a temp table that I'm populating from different sources. In the temp table, I have a bunch of rows that might have the same subdivision name. ...
0
votes
1answer
64 views

Efficiency of Calculating with Different Data Types?

I have a 1.2 billion row data set that involves columns of high precision floating point/decimal numbers. The requirements are that we have accuracy out to about 12 decimal places. I do not need to ...
0
votes
0answers
50 views

There is already an open DataReader associated with this Command which must be closed first SQL Reporting Services

I am getting the 'already an open DataReader associated with this Command which must be closed first'. I have enabled MARS but I still get the error. I'm using SQL server 2005 and I'm doing this ...
0
votes
2answers
38 views

Update second digit in a column

How to update the second digit in a 16 digit number to '1' ? This should be an easy one, but I have not had any luck. I am working with SQL Server 2000 and 2005 (multiple environments - same ...
0
votes
0answers
37 views

SQL Server 2005 : Enable TCP/IP Port through silent install or command prompt

Enable TCP/IP Port and also set the port to 1433. I tried the following possible ways. In the command line, I tried it by setting DISABLENETWORKPROTOCOLS=0 SQLEXPR.EXE /qb ...
1
vote
1answer
57 views

How to find the difference between 2 rows

Table1 id no name value 001 grid1 rajan 200 001 grid2 rajan 300 002 grid1 mahesh 100 002 grid2 mahesh 200 003 grid1 jayan 200 003 grid2 jayan 50 I want to find the difference (GRID1 - GRID2) for ...
1
vote
1answer
40 views

Select double sum if value=true in another table

I'm not going into far details with my table structure, nor my query, which is kinda huge to be honest. I'll explain an extremely simple scenario where my problem applies: Salesmen sell items. I am ...
0
votes
3answers
60 views

Need To Pull Most Recent Record By Timestamp Per Unique ID

I'm going to apologize up front, this is my first question on stackoverflow... I am attempting to query a table of records where each row has a VehicleID, latitude, longitude, timestamp and various ...
0
votes
1answer
18 views

Migrating an SQL database from a server to another [closed]

I am new to this world: I am given a list of files and I am requested to deploy them on a server (and then someone else will delete them from the old server). according to my research (and correct me ...
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: ...
0
votes
0answers
41 views

Error when upgrading to SQL Server 2008 R2 from 2005 [closed]

I have Sql Server 2005 standard edition with SP4 and trying to upgrade to 2008 R2. I specify "Evaluation" edition when I do the upgrade as I dont have the licence key hoping this will let me just ...
-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 ...

1 2 3 4 5 127