Viewing 15 posts - 226 through 240 (of 821 total)
patricklambin (11/18/2015)
I would advice to prohibit this way of coding/naming.
I disagree, naming conventions should reflect the factory needs. So, it may be that [Sales.XXX] is good in some environment.
November 18, 2015 at 1:38 am
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.
November 4, 2015 at 3:59 am
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
Viewing 15 posts - 226 through 240 (of 821 total)