Viewing 15 posts - 6,826 through 6,840 (of 7,636 total)
Would be easier if we could see the SQL code and table definitions (with indexes).
May 27, 2008 at 10:53 am
I agree with Kent and Michael: Auditing is usually considered to be an operational feature, not a functional one, and thus I would prefer to implement it using Operational...
May 27, 2008 at 10:19 am
I believe that this is an option of the published Articles. You will have to change it in each Article's definition, or change the Article defaults and then drop...
May 27, 2008 at 10:07 am
That said, here is how I would do something like this:
Select Room
From Rooms R
WHERE Not Exists (Select * from ReservationRooms RR
Where R.Room = RR.ResRoom
And CHECKINDATE < @DATEOUT
...
May 27, 2008 at 9:49 am
If you are really "looping" then a Tally table can help you to get rid of that Loop. If so, then please post the whole SQL procedure, not just...
May 27, 2008 at 9:40 am
GilaMonster (5/27/2008)
May 27, 2008 at 9:32 am
Things to look for: foreign keys with ON DELETE CASCADE, and Insert/Update triggers that are executing Deletes.
May 27, 2008 at 9:25 am
piojilla (12/28/2005)
The process could not create file \\{UNC-file}
After an initial set-up of replication the 'UNC-file' will be something like '\\{server-name}...
May 27, 2008 at 9:16 am
w.lengenfelder (5/27/2008)
-- ValidRequestOnQueueFlag
Case when exists
...
May 27, 2008 at 8:55 am
That seems likely.
May 27, 2008 at 8:47 am
jlp3630 (5/27/2008)
Or is it just bad programming practice to have "ON DELETE CASCADE"? Would it cause "unintended" side effects to unsuspecting programmers and undue complexity?
In my opinion, yes, it is...
May 27, 2008 at 8:30 am
GilaMonster (5/27/2008)
May 27, 2008 at 7:54 am
I have to admit, over the years I have consistently found this to be the single most frustrating aspect of SQL Server, bar none. I cannot even begin to...
May 27, 2008 at 7:46 am
Viewing 15 posts - 6,826 through 6,840 (of 7,636 total)