Viewing 15 posts - 1,111 through 1,125 (of 6,486 total)
Keep in mind that "failure" could very easily be just bad selection info being sent in the dynamicSQL. Meaning the process or query might not "fail" - it just...
December 1, 2011 at 11:56 am
Ninja's_RGR'us (11/21/2011)
bomborde (11/21/2011)
Revenant (11/21/2011)
ScottPletcher (11/21/2011)
SELECT TOP 1 Name, SUM(Consumption) AS Total_Consumption
FROM tablename
GROUP BY Name
ORDER BY...
November 21, 2011 at 10:37 am
p-nut (11/17/2011)
Sean Lange (11/17/2011)
Dev (11/17/2011)
It would be truly impossible to ensure 100% that you have the exact order every single record is inserted into a table. You could...
November 17, 2011 at 11:57 am
GSquared (11/17/2011)
November 17, 2011 at 11:49 am
AND not (gifteffdat BETWEEN '03/01/2008' AND '02/28/2009') --no gifts FY09
November 2, 2011 at 1:57 pm
jared-709193 (11/2/2011)
Matt Miller (#4) (11/1/2011)
found it! using the wrong key words will get you lost each time.
Ok, so as I understand from this article... The slot array...
November 2, 2011 at 7:54 am
found it! using the wrong key words will get you lost each time.
November 1, 2011 at 3:48 pm
jared-709193 (11/1/2011)
Lowell (11/1/2011)
November 1, 2011 at 3:31 pm
jared-709193 (11/1/2011)
Matt Miller (#4) (11/1/2011)
- there's no such thing as a "physical order" in a DB. if you want to be able to track the...
November 1, 2011 at 2:38 pm
EXISTS doesn't work that way. you could make it work, but I prefer using the EXCEPT syntax in this case (since you're using 2008). Something like:
declare @currentgrp char(1)
set...
November 1, 2011 at 11:50 am
Two things to consider:
- there's no such thing as a "physical order" in a DB. if you want to be able to track the ordering bacsed on when...
November 1, 2011 at 11:16 am
one word of caution on the XML approach: remember that it will tend to encode symbols, etc... which can get a bit hairy when dealing with things like >...
November 1, 2011 at 10:36 am
This is the kind of stuff I used to do in 2003 ofr these kinds of things (the DSN-less connections). This was written with 2007 in mind, so they...
October 28, 2011 at 12:27 pm
Walton (10/27/2011)
Is there anyway to findout if passed parameter is INTEGER or DECIMAL(NUMERIC)?
Passed from where to where? using what technology?
I'm sorry but as currently stated - there's no good...
October 27, 2011 at 11:33 am
pschwartzbauer (10/27/2011)
October 27, 2011 at 10:12 am
Viewing 15 posts - 1,111 through 1,125 (of 6,486 total)