Viewing 15 posts - 5,071 through 5,085 (of 13,872 total)
Where two rows have the same order Id, how do you define which one comes first?
October 7, 2017 at 9:31 am
October 7, 2017 at 8:25 am
October 6, 2017 at 1:53 pm
I have the following store procedure
EXECUTE sp_sqlbackup @Databases =...
October 6, 2017 at 12:15 pm
October 6, 2017 at 9:28 am
October 6, 2017 at 8:26 am
October 6, 2017 at 8:20 am
October 6, 2017 at 7:41 am
This should get you going, though hard-coding username/password in a script is not good practice, as I'm sure you are aware.
October 6, 2017 at 6:49 am
October 6, 2017 at 6:43 am
October 6, 2017 at 6:23 am
October 5, 2017 at 8:01 am
Try this
IF EXISTS (SELECT 1 from @EntryPoint where Name NOT IN ('<ALL>', '<NONE>')
BEGIN
--do stuff
END
You may need to refine the Boolean logic to...
October 4, 2017 at 1:24 pm
Viewing 15 posts - 5,071 through 5,085 (of 13,872 total)