1
vote
1answer
28 views

How to select shipments that have one activity but doesn't have another one

Simplified version of a table Table ActivityHistory: ActivityHistoryid(PK) | ShipmentID | ActivityCode | Datetime 1 | 1 | CodeA | 2 | ...
0
votes
2answers
13 views

generated excel from SSIS but getting quote in every column?

I have generated and excel from SSIS package successfully. But every column is having extra ' (quote) mark why is it so? My source sql table is like below Name price address ashu 123 ...
0
votes
0answers
15 views

Computed column that uses row_number() or dense_rank() over a partition

This question is related to a previous question, Grouping by or iterating through partitions in SQL I need to support SQL Server 2005, 2008, 2008 R2, and cannot depend on the Enterprise or full ...
0
votes
2answers
21 views

Sum Filtered Value

I have these rows: value1 | value2 | value3 ------------------------- 1231234|23423423|B 2342345|12309123|X 3242344|53453453|X 3453454|45345344|I 2531534|53434534|X 6657555|42342234|I ...
0
votes
0answers
9 views

Could not find the type 'tSQLt.Private'

I have installed tSQLt with CLR permissions Off. I am not sure how it got installed. I see some stored procedure of class tSQLt. Now I am trying to re-install it by cleaning tSQLt, but could not able ...
-3
votes
2answers
54 views

Data Scrubbing in SQL Server

The requirement is to scrub the data. I have loaded data from a flat file into a SQL Server table in some columns there are some values like -111, -11, -11 i.e starting with negative values and there ...
0
votes
3answers
44 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 ...
0
votes
2answers
29 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
1answer
25 views

Can I set a column's default to be a character string from another column on the same row within the same table?

Here is the base table layout: create table employees (employeeid int not null IDENTITY, firstname varchar(50), middlename varchar(50), lastname varchar(50), assumedfirstname default(firstname), ...
1
vote
2answers
23 views

How to use PHP to return the last inserted ID on an MSSQL table with Triggers installed

I am attempting to run a query on an MSSQL database and return the insert ID using PHP. Previously, I had been using the following code for this, which worked fine: $q = "INSERT INTO Pricing ...
-3
votes
3answers
52 views

Remove all after space in SQL Server data column

I have a data column in SQL Server that always starts with a number and sometimes has a space after the number with additional details. This is a text column. I need a query that will remove ...
-1
votes
2answers
56 views

SQl left outer join to fill null

I have joined two tables in SQL (see below) using a left outer join. Is it possible to fill the null cells with other data? sqlfiddle (from fiddle) CREATE TABLE Data1 (cost_type ...
2
votes
4answers
85 views

SELECT a single field by ordered value

Consider the following two tables: student_id score date ------------------------- 1 10 05-01-2013 2 100 05-15-2013 2 60 05-01-2012 2 95 ...
0
votes
1answer
16 views

Connect SAS to a Microsoft SQL Server database

I'd like to connect SAS to a Microsoft SQL Server database but I didn't succeed. I already have a database connection using a NT authentication. For instance, when I want to connect R (the ...
1
vote
3answers
55 views

Qry runs too long and index didn't work

I created an index to help a really long 28 minute qry run faster and it doesn't seem to have helped to much. This is the Index I created USE [NLTR201212_test] GO CREATE NONCLUSTERED INDEX [Billys ...
1
vote
4answers
35 views

How do I manage large data set spanning multiple tables? UNIONs vs. Big Tables?

I have an aggregate data set that spans multiple years. The data for each respective year is stored in a separate table named Data. The data is currently sitting in MS ACCESS tables, and I will be ...
0
votes
1answer
36 views

Incorrect syntax near the keyword 'DEFAULT' - Unable to modify table

I have created a table from this script. The databases are partitioned. print 'Create Table - tenant_Import' go create table tenant_Import ( Import_Data_Id bigint not null ...
0
votes
1answer
29 views

The foreign key query optimization

I have two tables dbo.Jobs(JobID(Primary Key), Name, Status(Foreign key)) and dbo.JobStatusMaster(StatusID(Primary key), StatusName) dbo.Jobs has a field status which is foreign key referencing ...
0
votes
0answers
8 views

How to display data in DataGrid with Silverlight

I want to run a SQL Query like SELECT a,b,c,d FROM table1 WHERE userID.table1 = userID.table2 I want the output to go to the a DataGrid. I am using SQL Server 2012. This is a Silverlight 5 ...
0
votes
2answers
54 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
47 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 ...
0
votes
0answers
21 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 ...
2
votes
2answers
35 views

SQL Server > How to query a sum from logs

The table below contains state changes of three users over time. I am trying to make a query that return the sum of the state of all users, but only from today most recent row. idEvent | date | ...
1
vote
1answer
50 views

TSQL - Get Data grouped by row number

I have a table with ID and Date field ID |Date 1 |2013-5-22 1 |2013-5-23 1 |2013-5-25 1 |2013-5-26 2 |2013-5-26 2 |2013-5-27 1 |2013-5-27 1 |2013-5-28 ...
1
vote
1answer
28 views

Select Distinct From View

lets say that I have view that contains the following data Name Image ---- ---------- A Image1 A Image2 A Image3 B Image4 B Image5 Now what I ...
0
votes
0answers
31 views

Index I created didn't help too much

so I created an index to help a really long 28 minute qry run faster and it doesn't seem to have helped to much. This is the Index I created USE [NLTR201212_test] GO CREATE NONCLUSTERED INDEX [Billys ...
0
votes
3answers
85 views

Why when I insert a DateTime null I have “0001-01-01” in SQL Server?

I try to insert the value null (DateTime) in my database for a field typed 'date' but I always get a '0001-01-01'. I don't understand, this field "allow nulls" and I don't know why I have this default ...
1
vote
1answer
43 views

Implementing debit-credit resolution system in SQL query

I'm trying to implement a debit-credit resolution system, but I am having a hard time expressing the logic based on sets. Suppose I have a table of Orders: Id OrderId Amount ...
1
vote
2answers
66 views

Creating Random Data

I am trying to create some random data in my database, as you can see from the code below my Order number works fine and so does my order date but I cant get my OrderLineNumber to work, I want it to ...
1
vote
4answers
135 views

SQL Group by query to select the data from same table

My table have following data, ID name devID 1 abc 101 2 def 111 3 ghi 121 4 abc 102 5 def 110 I want to select the rows (ID,name,devID)based on the following condition: a. the ...
0
votes
5answers
52 views

Left outer Join query optimization

I am not so advanced sql user. Could you please review my following query is it optimal ? or I can do something more more optimized and more readable? select Distinct DT.Station , DT.Slot , ...
0
votes
1answer
44 views

SQL query optimisation / refactoring

Just wondering can anyone see a neater way to write this query. It seems like a lot of repetition to me but I can't see an easier way to write it. It is pulling back Year-to-date data. Output looks ...
0
votes
2answers
57 views

How to display progress bar while executing big SQLCommand VB.Net

I have this big SQL command that usually returns 20 000 - 100 000 rows of data. But as soon as i call the executeMyQuery function, the program hangs for a few seconds depending on how large the return ...
1
vote
1answer
57 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 ...
1
vote
1answer
16 views

Escaping backslash in SQL Server GRANT

GRANT SELECT ON tableName TO something\user_name Unfortunately, when I execute this in SQL Server 2008 R2 I get an Incorrect syntax near '\'. error. Is there a way to escape a backslash, or what ...
1
vote
5answers
53 views

How to store all data return by certain query in a table in a single string in SQL Server 2005/2008

Suppose I have two rows in my SQL Server table as below Id Name Address --------------------- 1 Kamal Kathmandu 2 Rahul Pokhara I want to store these two rows a single string like this, ...
0
votes
2answers
23 views

SELECT * FROM Linked MySQL server

I have a SQL Server 2012.(120.120.55.15) Today I linked MySQL server(120.120.55.30) to my SQLServer and gave it a name "MYSQL". In Object Explorer everything seems fine. I can see MySQL server's ...
-3
votes
1answer
23 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 ...
1
vote
1answer
28 views

Alter column without changing collation

We're experiencing difficulties in managing different customer databases: We need to alter a primary key column from VARCHAR(20) to VARCHAR(40) without altering the collation. The reason behind this ...
0
votes
2answers
39 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
41 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)
0
votes
3answers
38 views

Use CASE statement to check if column exists in table - SQL Server

I'm using a SQL server statement embedded in some other C# code; and simply want to check if a column exists in my table. If the column (ModifiedByUSer here) does exist then I want to return a 1 or ...
1
vote
2answers
41 views

SQL count ids in fields

I have a table contains IDs in field. It looks like: FieldName ------------------------- 1,8,2,3,4,10,5,9,6,7 ------------------------- 1,8 ------------------------- 1,8 I need to count these IDs ...
1
vote
3answers
50 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, ...
2
votes
1answer
46 views

Select for each record multi records

I'm writing a sql statement where user should enter 'From Date' and 'To Date' (less then 31 days) For every Date I need to select fields from a table related to an employee I need the logic of a ...
1
vote
2answers
21 views

insert Delta between to xmls to table- SQL

I have 2 xmls Like (the tags are Dynamic): Declare @OldXml xml = ...
1
vote
3answers
28 views

Error on renaming database in SQL Server 2008 R2

I am using this query to rename the database: ALTER DATABASE BOSEVIKRAM MODIFY NAME = [BOSEVIKRAM_Deleted] But it shows an error when excuting: Msg 5030, Level 16, State 2, Line 1 The ...
0
votes
3answers
50 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
88 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 ...
1
vote
4answers
55 views

How max() function works in SQL-Server?

I want to find maximum column value, i says: SELECT Segment_ID.Segment_ID, Intensity.Date, Intensity.NumAll, Intensity.AverageDailyIntensCar, MAX(Intensity.AverageDailyIntensCar) as maxvalue, ...

1 2 3 4 5 517