Viewing 15 posts - 226 through 240 (of 812 total)
Good!
Next month I want to start using filetable.
I'm really curious.
😀
October 12, 2015 at 5:32 am
I couldn't test it, but I find this:
https://msdn.microsoft.com/en-us/library/gg492086%28v=sql.120%29.aspx
October 8, 2015 at 8:15 am
Ed Wagner (9/2/2015)
Stewart "Arturius" Campbell (9/2/2015)
Methinks thisis going to turn into an interesting discussion.Thanks fot the question, Steve
I'm thinking that your thinking is right. 😉
I wonder if this counts as...
September 2, 2015 at 7:33 am
"String literals as column aliases" are a deprecated feature!
September 2, 2015 at 1:09 am
Louis Hillebrand (9/2/2015)
column AS alias
column AS 'alias'
column AS [alias]
column alias
column 'alias'
column [alias]
alias = column
'alias' = column
[alias] = column
And I didn't use double quotes.
I...
September 2, 2015 at 1:08 am
The right answer
SELECT mynum AS test
FROM dbo.myTable AS mt;
SELECT test = mynum
FROM dbo.myTable AS mt;
SELECT 'test' = mynum
FROM dbo.myTable AS mt;
SELECT mynum test
FROM dbo.myTable AS...
September 2, 2015 at 1:05 am
david.gugg (9/1/2015)
I guess I don't know what a mount point is well enough, but can't you get that information by looking at the file name and path in sys.master_files?
That's a...
September 1, 2015 at 7:57 am
To get it for each db and files:
declare @sql nvarchar(max) = 'select 0 as dbid,0 as fileid WHERE 0=1'
UNION...
September 1, 2015 at 2:26 am
Very interesting!
Thanks!
😀
But in the real world, if Id is uniqueidentifier, how many splits of page will occur?
August 6, 2015 at 1:37 am
BWFC (8/3/2015)
The correct answer is Query 2, with the MODIFY FILE...
August 3, 2015 at 1:29 am
I tested it. The qotd is right and also the answers are correct.
I learned something new.
I also tested placing a WITH(NOLOCK) on query 2 and 3, same results.
Query 1:
create table...
July 31, 2015 at 2:04 am
Eirikur Eiriksson (7/30/2015)
Thanks Ed for this fine piece, certain that it will be a very handy reference.😎
+1
Here, another dos command to list files, each column is separated by "*":
@for /R...
July 30, 2015 at 4:01 am
Hugo Kornelis (7/16/2015)
Koen Verbeeck (7/15/2015)
Meh, who cares about mirroringPerhaps, everyone who does not have the budget for Enterprise Edition?
If you are running an edition of SQL Server that does...
July 17, 2015 at 6:53 am
I read about TEMPORAL TABLE just two weeks ago.
Good qotd!
🙂
July 16, 2015 at 1:38 am
Viewing 15 posts - 226 through 240 (of 812 total)