0
votes
3answers
45 views

SQL Query needs to match similar records

I have a very large table of contacts which I am building an interface to help my client to de-dupe. Here is an example of the table content id | firstname | lastname | email | address1 | ...
3
votes
5answers
39 views

ORDER BY works only with column alias

So, I have this query SELECT NOTES, DATECREATED, DATEMODIFIED, * FROM myTable WHERE USERCREATEDBY = 465 AND NOTES LIKE ' :%' ORDER BY DATECREATED and it throws this error ...
1
vote
3answers
33 views

Incorrect syntax near the keyword 'PROCEDURE'

Execute following statement in the SQL Server IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[SP_CandidateRegistration]') AND type in (N'P', N'PC')) BEGIN CREATE ...
2
votes
3answers
45 views

How to calculate average of a column and then include it in a select query in SQL

I have a query where the result like the following saledate Amount TRVal 20/05/2013 $6250.78 4 21/05/2013 $4562.23 4 22/05/2013 $565.32 6 23/05/2013 $85.36 8 24/05/2013 $56.36 5 ...
0
votes
1answer
20 views

Rounding up/down to the nearest 5 minutes where hh:mm:ss value is in varchar form

I have a database which one column has a hr:min:sec value like "14:04:33" as varchar (50). I want to round up/down to the nearest 5 min: 14:05:00 and 14:00:00 respectively and both of them needs to be ...
0
votes
1answer
33 views

how to sum column i in temp table

SELECT @cinema_count = COUNT(c.[key]) FROM cinemas c SET @count = 0 WHILE @count < @cinema_count BEGIN SET @count = @count+1 SET @buffer = 'ALTER TABLE #temptable ADD ...
2
votes
4answers
41 views

SQL Query for retrieving data by combining two queries

I am writing two queries in my sql procedure to retrieve data based on the parameter provided from the user in my asp.net application. IF @Action = 'ID' SELECT ...
0
votes
2answers
34 views

Trying to lock database but not working

I have a table that looks like this Create Table Items( [Id] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY, [UniqueCol] [nvarchar](20) NOT NULL, [Col] int NOT NULL ) ALTER TABLE Items ADD ...
-4
votes
2answers
101 views

Order of join operations: would these two FROM clauses produce the same results? [closed]

Would these two FROM clauses produce the same results? And if not, is there a way to write the the first one so that no parenthesis are needed? FROM SALESTAX RIGHT JOIN ( ...
-3
votes
4answers
65 views

How can I insert each line from txt file into separate rows in a SQL Server database?

I have a text file which has words from dictionary like.. ABACA ABACHI ABACHISTA ABACO ABADESSA ABADIA ABALIETA ABARICA Now what I want to do is insert this list from a text file into a SQL Server ...
1
vote
3answers
38 views

What kind of indexes will help me in this MERGE query?

I have a table like this: Name | TimeA | TimeB | ValueA | ValueB And, I am performing some MERGE operations as follows: CREATE TABLE #TEMP1... INSERT INTO #TEMP1 SELECT Name, Value FROM ...
1
vote
1answer
21 views

Get Direct Descendants Count with HierarchyId

SQL Server 2008 w/ hierarchyId Given this structure: CREATE TABLE Employee ( EmpId INT PRIMARY KEY IDENTITY, EmpName VARCHAR(100) NOT NULL, Position HierarchyID NOT NULL ) INSERT INTO ...
0
votes
0answers
20 views

Tool/method to convert a varbinary to an image file

I have a table in a SQL Server 2008 with images (JPG) stored in a varbinary column. I was wondering if there's a really simple way of converting a varbinary back to a image file. For example - I'm ...
2
votes
3answers
62 views

Read SQL Database in batches

I am using Java to read from a SQL RDBMS and return the results to the user. The problem is that the database table has 155 Million rows, which make the wait time really long. I wanted to know if it ...
0
votes
3answers
59 views

inner join results of “with” clause

I have 2 with clauses like this: WITH T AS (SELECT tfsp.SubmissionID, tfsp.Amount, tfsp.campaignID, cc.Name FROM ...
-2
votes
0answers
38 views

Want one column name as header and data from other table in SQL Server 2008

Actually I am writing a stored procedure and I tried it but facing some issues. I have two tables, table 1 and 2 I am crating SP which can create view I want one column of my table 1 as a header ...
0
votes
0answers
11 views

sql database tuning and optimisation using Recommendation Provided by “Database Engine Tuning Advisory” [migrated]

Our Database has increased very big (SQL 2008 R2), we are trying to optimize performance of DB. Can we Follow Recommendations provided by "Database Engine Tuning Advisory" by giving .trc file ...
-1
votes
1answer
47 views

deletion of data based on comparison with current datetime

I have a issue while delete the data from table.. I will explain that to you in detail first. See i have one table with 1000 of records i have one more table with two columns **circle - Chennai ...
0
votes
4answers
34 views

Convert string to a valid MS SQL datetime to use for search in database

I saw a lot of answers, most of which include using of DateTime.ParseExact and "CultureInfo.InvariantCulture` but it's not working for me and I'm not sure that those answers are 100% related to the ...
3
votes
1answer
47 views

Third Solution for Student Course relationship

i was interviewed with a question, and i am not sure, if the interviewer was trying to confuse me or he was serious. Question was something, that we have a student Table , lets say Student ID , ...
1
vote
0answers
36 views

Why does SQL ignore an index hint and opt for a different index?

Given a table that has two indexes on it, one sorted in the reverse from the other and given these two queries. Select value From SomeTable wITH (INDEX(IV_Sort_Asc)) Select value From SomeTable wITH ...
0
votes
3answers
53 views

SQL to Parse a Key-Value String

I have a comma delimited string like this: key1=value1,key2=value2,key3=value3,key1=value1.1,key2=value2.1,key3=value3.1 and I'd like to parse it into a table that looks like this: Key1 Key2 ...
-1
votes
3answers
44 views

Separate 1 column data to 2 column

I have following data in my sql table: Tran_Date | Amount 2013-05-01 20:09:49 | 50.00 2013-05-02 04:09:49 | 50.00 2013-05-02 04:30:49 | 10.00 2013-05-02 20:09:49 | 500.00 2013-05-03 ...
-10
votes
0answers
61 views

A simple UPDATE SQL (novice) [closed]

I want to update TABLE1's column 2(string/char) from TABLE1's coulmn 1(numeric). I generally don't have to execute SQL queries - this sounds very simple to me but I am not able to do this. With the ...
0
votes
1answer
12 views

SQL Server Billing Implementation - The Current Balance

The current system I'm assigned to has no record of customer purchases, deposits, and rewarded credits (by administrators) - just a Credit column in the Users table. Every time a user deposits money, ...
0
votes
2answers
61 views

A SELECT statement that assigns a value to a variable must not be combined with data-retrieval operations

I need to assign the m.expiry_date to the variable @nextActionDueOn. ALTER PROCEDURE [dbo].[MembershipRetentionCheck] AS BEGIN SET NOCOUNT ON; declare @firstActionTypeId int = 25 -- ...
3
votes
3answers
51 views

How should my query be?

I have a table like this: date, flag 22/05/13 1 22/05/13 1 22/05/13 0 23/05/13 1 23/05/13 0 So I ...
1
vote
1answer
31 views

SQL Server 2008 filling gaps with dimension

I have a data table as below #data --------------- Account AccountType --------------- 1 2 2 0 3 5 4 2 5 1 6 5 AccountType 2 is headers and 5 is totals. Meaning ...
2
votes
1answer
41 views

Determine all columns used to execute some SQL on SQL Server 2008

I have hundreds of SQL Server stored procedures and script files, and I need to determine for each one the exact tables and columns they use. This is not easily done as the SQL is complicated and many ...
1
vote
1answer
63 views

INSERT EXEC Statement cannot be nested

I have three Procedures MainProcedure,Procedure1,Procedure2 1) In Procedure1 I just have a select statement , 2) In Procedure2 am calling the Procedure1 and inserting the Output to a #table 3) In ...
-3
votes
1answer
24 views

locked table by stored procedures in sql [duplicate]

I have table name called cusdec_boi this table publish as a transaction replication,and client update this table always,problem is some times Lock the table. I Have stored procedure name called ...
0
votes
2answers
40 views

convert decimal to HH.MM format in SQl Server

How to convert decimal to HH.MM format in SQl Server. Example:- 06.85 will be converted to 07.25, 06.60 will be converted to 7.00
0
votes
0answers
45 views

Add decimal time (HH.MM format) in SQl Server

How to add decimal time (HH.MM) in SQl Server. Example:- 4.20(4 hours and 20 Minutes) + 06.45 (6 hours and 45 Minutes) =11.05 (11 Hours and 5 minutes)
1
vote
3answers
55 views

How can I page through distinct filtered results?

I have the following query: SELECT DISTINCT TOP 20 f.id_service as f_id_service, f.id_city as f_id_city, f.name as f_name, f.address as f_address, f.business as f_business, ...
1
vote
1answer
36 views

delete values from depending tables using merge

I am trying to match rows from a table in source and destination db tables. I am able to delete that row which is present in dest table and not present in source table. However I also need to delete ...
0
votes
0answers
25 views

Password protected excel data to be imported in remote sql server 2008

I have an Excel which is protected by password(I know the pwd), I have to import the data from one of the sheets of excel file(.xls) and update one of the tables in the DB located in remote server. ...
0
votes
3answers
55 views

Prevent changes the default value of a column in a table sql server

How can i prevent changes in a column value set to default in sql server i have a table TimeTable in which Column is date which is of type varchar(20) i want that column should be updated with ...
0
votes
1answer
91 views

Why this Where condition returns 0 Rows?

SELECT * FROM tblName WHERE mode = '1' AND (category = @Category OR @Category = 'all' OR NewsId = @Category) I passed @Category='all'. This returns 0 rows. If OR NewsId=@Category this condition ...
0
votes
6answers
62 views

How to create a table from select query result in SQL Server 2008

I want to create a table from select query result in SQL Server, I tried create table temp AS select..... but I got an error Incorrect syntax near the keyword 'AS'
1
vote
0answers
42 views

Water Fall Logic via use of Update

Data been Hosted in ##YOMASTER (Temp Table) and I'm using Updates on my Water Fall Logic. Current Water Fall logic has 3 components and they all share the following: Which ever date is to be used, ...
1
vote
2answers
43 views

sql server: how to execute a .sql from another query?

I have a .sql script with a lot of action queries that work on some staging tables. This script needs to be run twice with some other commands in-between i.e.: Load the staging table from source A ...
1
vote
0answers
30 views

Using a Temporary Table in a Stored Procedure

I am trying to create and then call on a temp table in a stored procedure. What I am trying to accomplish is combining yearly data with quarterly data. For example: I have a field that has data for ...
0
votes
3answers
46 views

How to use SQL Server views with distinct clause to Link to a detail table?

I may be total standard here, but I have a table with duplicate values across the records i.e. People and HairColour. What I need to do is create another table which contains all the distinct ...
-1
votes
2answers
38 views

How to do a counter SQL Server 2008?

I have been doing this SELECT movi.Usuario AS RowUsuario, movi.MovID, MIN(Art.Descripcion1), MIN(com.ReferenciaExtra), MIN(com.Unidad), MIN(Art.UnidadCompra), MIN(movi.FechaEmision), ...
0
votes
3answers
58 views

How make query with unique?

I have query: SELECT TOP 20 f.id_service AS f_id_service, f.id_city AS f_id_city, f.name AS f_name, f.address AS f_address, ...
0
votes
1answer
50 views

How do I construct this table relationship in SQL Server?

Sorry, if this a rather basic question but I'm a SQL Server noob in need of help. I have 2 types of loan providers, Lender and Pingtree. Both Lender and Pingtree can have a relationship with ...
4
votes
1answer
59 views

SQL SERVER 2008R2 Nested Transactions with RAISERROR

We are going through a process of switching from DB2 to SQL Server 2008R2 and I'm a bit unfamiliar with TSQL. Any help getting a better understanding of what is occurring would be nice. We've ...
1
vote
3answers
65 views

sql time from value [closed]

I have a column with integer values in seconds, ie: Seconds 234555 1123 44567 I need to do a select of that column but the return value should be in the form of 1d 13h 23m How exactly should I ...
1
vote
2answers
37 views

How to add one day to all DateTime columns in a database?

I have a server which hosts my application. The application is working. Yesterday I realized that the server date is one day behind. How can I change the server date as well as update all my ...
2
votes
3answers
73 views

IF statement in SQL WHERE clause

Is it possible to pass in a value to a stored procedure to tell it whether or not to append an OR statement to a SQL SELECT statement? I've tried something like so but it is not valid: SELECT ...

1 2 3 4 5 218