Viewing 15 posts - 226 through 240 (of 819 total)
paul 25096 (11/4/2015)
November 4, 2015 at 3:49 am
I get it wrong because I forgot this from BOL:
READUNCOMMITTED and NOLOCK hints apply only to data locks. All queries, including those with READUNCOMMITTED and NOLOCK hints, acquire Sch-S (schema...
November 1, 2015 at 11:30 am
Easy questions.
Thanks!
😀
But, what happen?
Correct answers: 29% (108)
October 29, 2015 at 7:18 am
Interesting question!
Thanks.
October 18, 2015 at 9:34 am
Toreador (10/13/2015)
The correct answer is that an error is returned as the columns are defined as "Id" and referenced as "ID" 😉
Toreador!
Default collation is case insensitive.
😀
October 13, 2015 at 3:18 am
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 ALL SELECT '''+RIGHT(database_id,10)+''',fileid FROM '+name+'.sys.sysfiles'
FROM...
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
Viewing 15 posts - 226 through 240 (of 819 total)