Viewing 15 posts - 991 through 1,005 (of 6,486 total)
HowardW (5/17/2012)
May 17, 2012 at 10:41 am
HowardW (5/17/2012)
gemisigo (5/17/2012)
HowardW (5/17/2012)
There's absolutely no guarantee that the variable assignment will...
May 17, 2012 at 10:24 am
RBarryYoung (5/16/2012)
May 16, 2012 at 12:45 pm
In short - even though they are set up as OUTPUT variables, with no default values they are still required during the procedure call.
If you don't want to pass the...
May 16, 2012 at 9:30 am
From BOL:
Exits unconditionally from a query or procedure. RETURN is immediate and complete and can be used at any point to exit from a procedure, batch, or statement block. Statements...
May 16, 2012 at 8:46 am
Check the table you're inserting into for triggers, etc.... If the trigger is trying to do something with the very large column IT may be getting the truncation error.
May 15, 2012 at 3:41 pm
Try this (based on your test data):
SELECT
*, case BinaryCode & (POWER(cast(2 as bigint),MyDaTA-1)) when 0 then 'working' else 'non-working' end
--,here is where I need to do the business day...
May 14, 2012 at 5:57 pm
Chrissy321 (5/14/2012)
May 14, 2012 at 11:35 am
Chrissy321 (5/13/2012)
Jeff Moden (5/13/2012)
If you know the table name, why not just list the first 60 rows of data and the DDL to start with?
I have concerns about contractual vendor...
May 14, 2012 at 8:19 am
hmm. I would be cautious about equating parallel with "faster": in many cases the execution plan will be more efficient without the parallelism.
That said - Have you tried parameterizing...
May 11, 2012 at 1:40 pm
Why is it important for this to be parallel?
May 11, 2012 at 11:49 am
Lynn Pettis (5/11/2012)
Matt Miller (#4) (5/11/2012)
May 11, 2012 at 11:44 am
You'd actually need to use CHECKIDENT twice. The first time resets the next ID to an arbitrarily low value, and the next reseed puts it to the next higher...
May 11, 2012 at 11:23 am
If you're dealing with messaging and responses - you're really in the realm of talking about a SQL Service Broker application with a conversation set up. That said -...
May 11, 2012 at 10:59 am
You're not going to be able to query a URL directly from within a query. At very least you'd need to save the current RSS feed locally and THEN...
May 10, 2012 at 4:16 pm
Viewing 15 posts - 991 through 1,005 (of 6,486 total)