Viewing 15 posts - 1 through 15 (of 44 total)
Jeff Moden (7/29/2015)
July 30, 2015 at 9:45 am
WayneS (7/29/2015)
July 29, 2015 at 3:09 pm
Jeff Moden (7/29/2015)
1. How many rows are in the NetworkItem table?
2. How often does data change in...
July 29, 2015 at 2:44 pm
GilaMonster (3/20/2011)
What does your testing show? Have you looked at the execution plans, duration and IO statistics of each?
The 4 queries return the same result like:
SKUGroupIDSKUMain
S20003120003S200031
M20003220003S200031
T20003320003S200031
A10092110092A100921
B10092210092A100921
G30005130005G300051
March 20, 2011 at 12:30 pm
terrance.steadman (7/10/2009)
Please take a look at the code again, especially in the WHERE clause.
WHERE
(
@OtherAddressDetails = 'member address'
AND OtherAddressDetails = @OtherAddressDetails
...
July 10, 2009 at 9:09 am
Jack Corbett (7/10/2009)
July 10, 2009 at 9:00 am
terrance.steadman (7/10/2009)
I had missed that the IF statement was on the variable when considering the 2 statements. So, here is a slightly modified statement from the one I had...
July 10, 2009 at 8:48 am
kramaswamy (7/10/2009)
Depending on what you want to do, you could do something like:
declare @OtherAddressDetails nvarchar(1000)
set @OtherAddressDetails ='member address' -- or to...
July 10, 2009 at 8:46 am
Bevan keighley (4/6/2009)
April 6, 2009 at 9:09 pm
gtschech (4/2/2009)
Guid.Empty is a GUID consisting of all zeros.yours
Günter
Thank you very much.
April 5, 2009 at 8:50 am
GSquared (2/24/2009)
You could build something using the sys.foreign_key_columns system view. Not sure why you wouldn't want to use Joins.
Thanks for your reply.
The reason I do not want to use...
February 28, 2009 at 7:04 am
Sergiy (6/19/2008)
Easiest way - in QA menu click Query -> Show Server Trace.
When I comment out the last (the 3rd SELECT query that has the problem) and turn on the...
June 20, 2008 at 2:32 pm
Sergiy (6/18/2008)
You missed the point:When your procedure (or batch ) is being compiled
Run you full batch with Trace ON and you'll see - no statements are executed.
So can you tell...
June 19, 2008 at 8:47 am
Sergiy (6/17/2008)
When your procedure (or batch ) is being compiled there is no RowID in the table yet.
Howerver, if I comment out the last query, and let the 2...
June 18, 2008 at 8:20 am
Howerver, if I comment out the last query, and let the 2 preceeding queries run, I can see the rowID column in result DTSs. That is weird.
Any idea?
June 18, 2008 at 8:19 am
Viewing 15 posts - 1 through 15 (of 44 total)