Viewing 15 posts - 181 through 195 (of 1,923 total)
capn.hector (4/27/2012)
ColdCoffee (4/27/2012)
Sean Lange (4/27/2012)
ColdCoffee (4/27/2012)
Sean Lange (4/27/2012)
April 27, 2012 at 3:10 pm
Sean Lange (4/27/2012)
ColdCoffee (4/27/2012)
Sean Lange (4/27/2012)
April 27, 2012 at 2:57 pm
Sean Lange (4/27/2012)
April 27, 2012 at 2:43 pm
Lynn Pettis (4/27/2012)
ColdCoffee (4/27/2012)
Lynn Pettis (4/27/2012)
Just remember, he isn't showing us actual code.He? the names sounds like a SHE :-D. Whats your take ?
{Lets, for fun, hijack this thread :-P}
I...
April 27, 2012 at 1:18 pm
Lynn Pettis (4/27/2012)
Just remember, he isn't showing us actual code.
He? the names sounds like a SHE :-D. Whats your take ?
{Lets, for fun, hijack this thread :-P}
April 27, 2012 at 1:06 pm
Lynn Pettis (4/27/2012)
ColdCoffee (4/27/2012)
Riya_dave, it depends on this...
April 27, 2012 at 12:53 pm
I guess the OP wants to know why NULL cannot be used with = operator but can be used with the keyword IS
Riya_dave, it depends on SET ANSI_NULL setting...
April 27, 2012 at 12:48 pm
What i see from the CASE statemnet is that, based of the payment_id value, he is choosing from 2 different tables.. If thats the case, then i dont think there...
April 26, 2012 at 4:56 pm
SQL_Nw (4/26/2012)
What am I missing here?
First, you missed providing the data in readily consumable format.
Second, you missed showing us your subqeury query.
Third a JOIN is in order...
April 26, 2012 at 3:27 pm
Polka, as others have already noted, you query is performing exactly what u r asking it to
"Get me the list of values from Validate tables that do not have 23...
April 26, 2012 at 2:25 pm
select partnumber, count(distinct partdesc)
from parttable
group by partnumber
having count(distinct partdesc) > 1
April 26, 2012 at 12:00 pm
130 and 131 should be using NVARCHAR as they may produce Hijri script
Like this:
Select 130, Convert(NVarchar(50),GetDate(),130) Union All
Select 131, Convert(NVarchar(50),GetDate(),131)
April 26, 2012 at 10:48 am
You would better off be writing it in IF...ELSE block. THat would produce a decent plan always.
But if u insist in using single query to do that, then u can...
April 24, 2012 at 4:49 pm
Try this 🙂
declare @string table ( string varchar(200) )
insert @string
select '\Beverages\Soda Pop\Mountain Dew'
union select '\Beverages'
union select '\\Food'
select s.string , crsapp.Idx
...
April 24, 2012 at 3:50 pm
Viewing 15 posts - 181 through 195 (of 1,923 total)