Viewing 15 posts - 4,096 through 4,110 (of 49,571 total)
GilaMonster (12/3/2015)
Why do you say it's never truncated? What recovery model, what backups are scheduled?
???
December 4, 2015 at 1:49 am
Probably something like
IF @Parameter=1
SELECT...
but that's guessing without seeing the code.
December 4, 2015 at 1:48 am
shamshad.ali (12/3/2015)
a) (MasterId, ID) OR (ID, MasterID)
Um...
you probably want an index on (MasterID, ID)
create one on (MasterID, ID)
As I specified it. (MasterID, ID)
How many times do I have to say...
December 3, 2015 at 7:36 am
Why do you say it's never truncated? What recovery model, what backups are scheduled?
December 3, 2015 at 2:25 am
shamshad.ali (12/2/2015)
i) Should I use the sequence first Detail.MasterId then Detail.Id or first Detail.Id then Detail.MasterId?
As I specified it. (MasterID, ID)
ii) Developers should use exactly the same sequence in where...
December 3, 2015 at 1:13 am
Rich Mechaber (12/2/2015)
GilaMonster (12/1/2015)
December 2, 2015 at 1:27 pm
Check the Stairways here (stairways link in the left-hand side menu) and read the stairway to indexes
December 2, 2015 at 10:53 am
shamshad.ali (12/2/2015)
In my given scenario, do I need any index or not, back to my first question ?
Which I have answered. Twice.
GilaMonster (11/26/2015)
December 2, 2015 at 9:16 am
jasona.work (12/2/2015)
//me doesn't always terminate statements with a semi-colon///semi-colon;
Neither do I, though I fix that any time I notice the mistake. I don't however start statements with terminators.
December 2, 2015 at 9:14 am
Let me guess
You created the database, set the recovery model and then started to test?
Until a database has had a full backup, it runs in pseudo-simple recovery because there's nothing...
December 2, 2015 at 9:13 am
xsevensinzx (12/2/2015)
December 2, 2015 at 9:05 am
One of the first things you need to do is determine whether adding complexity is necessary. Thousands of transactions a minute isn't that high all things considered
December 2, 2015 at 8:42 am
When you want to make the database unavailable after the backup completes.
December 2, 2015 at 8:39 am
xsevensinzx (12/2/2015)
December 2, 2015 at 8:35 am
Oh, and also...
MERGE must be terminated with a ;
THROW requires that the previous statement be terminated with a ; (although there's no error in most cases if you don't, try...
December 2, 2015 at 8:28 am
Viewing 15 posts - 4,096 through 4,110 (of 49,571 total)