Viewing 15 posts - 8,116 through 8,130 (of 8,731 total)
The easiest way is to change the order of the tables creation put StudentAccount after Instructor.
May 31, 2013 at 1:09 pm
You could use a query like this, but you may want to complete it.
This will give you the StandIDs in more than one Stadium. To get the ones that are...
May 31, 2013 at 12:44 pm
I've been doing it for so long, I'm not sure where to look for. Maybe the stairway to T-SQL [/url] on this site can be a good start but I...
May 31, 2013 at 11:22 am
dwg23 (5/31/2013)
May 31, 2013 at 11:00 am
I'm sorry, my intention wasn't to be rude, I've had a tough week at work (some might have an idea why is that). I'm really interested in helping you, otherwise...
May 31, 2013 at 8:29 am
Use a batch separator (a.k.a. GO).
This will help you unless you're using the query inside a SP.
May 30, 2013 at 5:32 pm
I'm sorry but I forgot my mindreader cap.
Could you post the errors you're getting and the DDL involved? Some sample data and expected results will help us to see what...
May 30, 2013 at 5:31 pm
I'm glad it worked almost fine and even more glad that you tested the code before using it. 🙂
May 30, 2013 at 3:20 pm
Could you post DDL (tables structure) and sample data? And define what's a match and what else is involved.
I'm thinking on using UPDATE... WHERE [NOT] EXISTS( <query to find the...
May 30, 2013 at 1:41 pm
I've sent some emails and the answer was that they are aware of the implications of using it but it's a policy and must be followed.
I'll save that email to...
May 30, 2013 at 10:56 am
As general information, user defined scalar valued functions won't allow you to use parallellism in your queries.
You might find better performance using an inline Scalar Valued Function as called by...
May 30, 2013 at 10:38 am
Michael Valentine Jones (5/30/2013)
Luis Cazares (5/30/2013)
GilaMonster (5/28/2013)
WangcChiKaBastar (5/28/2013)
our database is not financial, our use of NOLOCK hint was to increase concurrency and limit contention (deadlock).
Use one of the snapshot isolation...
May 30, 2013 at 10:31 am
Eugene Elutin (5/30/2013)
Luis Cazares (5/30/2013)
GilaMonster (5/28/2013)
WangcChiKaBastar (5/28/2013)
our database is not financial, our use of NOLOCK hint was to increase concurrency and limit contention (deadlock).
Use one of the snapshot isolation levels....
May 30, 2013 at 9:31 am
GilaMonster (5/28/2013)
WangcChiKaBastar (5/28/2013)
our database is not financial, our use of NOLOCK hint was to increase concurrency and limit contention (deadlock).
Use one of the snapshot isolation levels. Financial or non-financial, I've...
May 30, 2013 at 9:17 am
This code can help you to find it within Stored Procedures
DECLARE @Search_Text nvarchar(128) = 'MAXDOP',
@Command1 nvarchar(2000)
SET @Command1 =
'IF EXISTS( SELECT 1 FROM [?].sys.sql_modules m JOIN [?].sys.procedures p ON m.object_id =...
May 29, 2013 at 5:36 pm
Viewing 15 posts - 8,116 through 8,130 (of 8,731 total)