Viewing 15 posts - 31 through 45 (of 101 total)
sknox (8/25/2016)
MOST of the time you'll get two rows as explained in the answer.
HOWEVER, each GETDATE() within each SELECT is evaluated separately. When the separate...
August 26, 2016 at 3:52 am
Richard Hendrick (5/12/2016)
May 12, 2016 at 6:28 am
As I understand it, the transaction log backup at 8pm will contain transaction log records from when the previous transaction log backup was taken (7:45pm) until 8pm. So if you...
February 12, 2016 at 8:54 am
I like the ones where you have to try and figure out what's wrong with the question, then go for the option you think the questioner intended - thanks Steve!...
February 9, 2016 at 4:59 am
That must have been amazing to see, one of those things where you have to actually be there to appreciate it, like an eclipse or the Grand Canyon - pictures...
January 8, 2016 at 4:23 am
Hugo Kornelis (12/31/2015) So let me try to offset that by contributing something that perhaps might actually be useful for some people.
Thanks very much for these examples Hugo, very useful,...
December 31, 2015 at 3:59 am
arnierowland (12/25/2015)
SELECT geometry::Parse('POLYGON((
4 0, 0 0, 3 2, 1 2, 3 4, 1 4, 3 6, 2 6,
4 8, 6 6, 5 6, 7 4, 5 4, 7...
December 30, 2015 at 5:34 am
Carlo Romagnano (12/28/2015)
Try this:
declare @image as table (
row_id tinyint
primary key clustered (row_id desc)
);
insert into @image(row_id)
values(1),(2),(3),(4),(5),(6),(7),(8),(9)
select
case
...
December 30, 2015 at 5:34 am
Koen Verbeeck (12/7/2015)
PHYData DBA (12/2/2015)
Which is why I know you can and that M$ actually does support this ...Just curious, do you also use Appl€?
What about Son¥?
December 8, 2015 at 3:30 am
PHYData DBA (12/2/2015)
Stewart "Arturius" Campbell (12/2/2015)
tom.w.brannon (12/2/2015)
December 2, 2015 at 7:45 am
Stewart "Arturius" Campbell (12/2/2015)
tom.w.brannon (12/2/2015)
December 2, 2015 at 6:15 am
Nice question, not because it's really necessary to know the names, but for the explanation of where the names come from.
November 20, 2015 at 2:46 am
happygeek (11/4/2015)
Sean Lange (11/4/2015)
sipas (11/4/2015)
November 5, 2015 at 2:56 am
Carlo Romagnano (11/4/2015)
If I want to be pedant, the right answer is "All of the above".Because of lacking of batch separator "GO".
If you run the script no procedure is created.
It's...
November 4, 2015 at 4:35 am
Ooooh, the sneakiest question in a long while - should/cannot - definitely open to interpretation. Like all dodgy questions, people may still learn from it, but I think it's better...
November 4, 2015 at 3:50 am
Viewing 15 posts - 31 through 45 (of 101 total)