Viewing 15 posts - 1,426 through 1,440 (of 3,957 total)
I'd probably resort to a set-based loop.
DECLARE @ROWS INT = 0;
WHILE @ROWS = 0
BEGIN
WITH RandomWinners AS
...
September 24, 2013 at 8:24 pm
Leifton - For your case I might just use a correlated sub-query due to its simplicity and the fact that it has widespread understanding.
Create Table #SensorHistory
(
[time]...
September 24, 2013 at 6:23 pm
Sean Lange (9/24/2013)
dwain.c (9/23/2013)
Steven Willis (9/20/2013)
techmarimuthu (9/19/2013)
How to do database migration in Sql server?i need basic and step by step instruction.....
Please help me
Thanks in advance
The easiest method is to use...
September 24, 2013 at 6:11 pm
Cadavre (9/24/2013)
The question now of course becomes, which is faster over a million rows? 😀
Somehow I just knew you were going to say that. 🙂 +1
September 24, 2013 at 4:50 am
Steven Willis (9/20/2013)
techmarimuthu (9/19/2013)
How to do database migration in Sql server?i need basic and step by step instruction.....
Please help me
Thanks in advance
The easiest method is to use Generate Scripts under...
September 23, 2013 at 11:25 pm
Something like this perhaps?
WITH SampleData (MyString) AS
(
SELECT 'this,guy (Chicago)'
)
SELECT MyString
,C1=RTRIM(MAX(CASE WHEN ItemNumber = 1 THEN Item END))
...
September 23, 2013 at 11:22 pm
Jeff Moden (9/23/2013)
dwain.c (9/23/2013)
Grant Fritchey (9/23/2013)
Careful there! NSA monitoring in progress.
Thank goodness for that. Someone has to keep us ol' submarine sailors from having too much fun. ...
September 23, 2013 at 9:21 pm
As Sean suggested (1 and 2):
DECLARE @Admission TABLE
(
[Contract] VARCHAR(4)
,Admissiondate VARCHAR(6)
,SumofCost MONEY
);
INSERT INTO @Admission
SELECT '0606','200701',8639.38
UNION ALL SELECT...
September 23, 2013 at 7:50 pm
matt6749 (9/23/2013)
I respect your wish to have structured forum dialog, but it appears that, for this relatively simple question, helpful suggestions are possible without INSERT INTO and CREATE TABLE samples.
I'd...
September 23, 2013 at 7:03 pm
Is there some reason you can't make Ys = 1 and Ns = 0, then just add them up to avoid the CHARINDEX?
September 23, 2013 at 6:57 pm
Perhaps this works also?
DECLARE @Store_Out_Details AS TABLE (PurchaseOrderNo CHAR(3), SerialNo CHAR(4), Qty INT);
INSERT INTO @Store_Out_Details
VALUES ('001','I000',20),('001','I001',10),('002','I000',50),('003','I002',20);
DECLARE @Store_PO_Details AS TABLE (IssueNo CHAR(4), SerialNo CHAR(4), Qty INT);
INSERT INTO @Store_PO_Details
VALUES('S001','I000',10),('S002','I001',5);
SELECT SerialNo, Qty=SUM(Qty)
FROM
(
...
September 23, 2013 at 6:46 pm
Another way:
-- Result in seconds
SELECT SUM(LEFT(STATUSTRACKING, 2) * 3600 +
DATEDIFF(second, '1900-01-01', CAST(STUFF(STATUSTRACKING, 1, 2, '00') AS DATETIME)))
FROM #sum_minutes
September 23, 2013 at 6:41 pm
How about one of these 2 options? At least they don't do the CONVERTs twice.
INSERT INTO ReportRecipients
SELECT rs.[ReportID]
,rs.[ATID]
...
September 23, 2013 at 6:32 pm
Grant Fritchey (9/23/2013)
Jeff Moden (9/23/2013)
Grant Fritchey (9/23/2013)
September 23, 2013 at 6:19 pm
yghaziza (9/23/2013)
September 23, 2013 at 6:17 pm
Viewing 15 posts - 1,426 through 1,440 (of 3,957 total)