Viewing 15 posts - 8,191 through 8,205 (of 15,381 total)
Jack Corbett (5/29/2013)
I think your choices to produce N rows from 1 row are some type of explicit loop or a triangular join. I think the triangular...
May 29, 2013 at 1:23 pm
Jack Corbett (5/29/2013)
Luis Cazares (5/29/2013)
--Corrected line
CONVERT(INT, CEILING(quantity / CAST( @quanityPerRow AS decimal(10,2)))) AS...
May 29, 2013 at 12:59 pm
Mh-397891 (5/29/2013)
I want to get email alert if the following changes happen on the table in the database:1. Table deleted
2. Column added/deleted
3. Column datatype/datalength changes
Please advise. Thanks.
You should look into...
May 29, 2013 at 12:14 pm
Lynn Pettis (5/29/2013)
It is scanning the entire table because it has to check every row to determine if it matches the criteria for the WHERE clause. If the clustered...
May 29, 2013 at 10:13 am
In essence you are passing a delimited string where a space is your delimiter. You can use the DelimitedSplit8K function for this quite easily. You can find the code for...
May 29, 2013 at 9:54 am
Sounds to me like parameter sniffing.
http://sqlinthewild.co.za/index.php/2007/11/27/parameter-sniffing/%5B/url%5D
http://sqlinthewild.co.za/index.php/2008/02/25/parameter-sniffing-pt-2/%5B/url%5D
May 29, 2013 at 9:42 am
prakashr.r7 (5/29/2013)
I am trying to track a multi user application . I am one of the user. I want to...
May 29, 2013 at 7:27 am
dan-572483 (5/28/2013)
According the the Querying SQL2012 exam prep book, a SELECT * inside an EXISTS clause returns true or false only - not all...
May 29, 2013 at 7:16 am
sqlguy-736318 (5/28/2013)
the stored proc hangs in section 4 of the attached proc
----------------------
-- #4 - Now update the CRM CEB table
----------------------
DECLARE @Rows int = 1
--DECLARE @RowPrint int
DECLARE @BatchSize int = 5000
WHILE...
May 28, 2013 at 3:16 pm
dwilliscp (5/28/2013)
May 28, 2013 at 2:52 pm
drew.georgopulos (5/28/2013)
May 28, 2013 at 2:46 pm
sqlguy-736318 (5/28/2013)
I ran it once before and it completed in 1.5 hours but then I ran the same proc on Friday...
May 28, 2013 at 2:33 pm
So to answer your question. NO this isn't possible. #1 and #3 make this impossible. If you have a default, you have a constraint. Give a shot and check it...
May 28, 2013 at 9:56 am
keshava.murthy (5/28/2013)
The problem here is when the data spans to multiple years then it will sort as...
May 28, 2013 at 9:53 am
NJDave (5/28/2013)
2 of the instances are SQL 2000 standard and are worried that SQL 2000...
May 28, 2013 at 9:51 am
Viewing 15 posts - 8,191 through 8,205 (of 15,381 total)