Viewing 15 posts - 31 through 45 (of 99 total)
paul s-306273 (6/29/2016)
Confidently expected to get this right...like lots of others!
same
June 29, 2016 at 5:22 am
Igor Micev (6/23/2016)
The answer is $.address, not $,address.
also agreed. I don't know anything about JSON but was able to get enough out of documentation to see what the right...
June 24, 2016 at 5:55 am
The answer should be No. Open a new window and paste in the following and it works just fine:
with myCTE(n)
as
(select 1
)
select * from myCTE
No semicolons anywhere in the window....
June 7, 2016 at 6:56 am
I don't know anything about XML but the following works just fine as well:
CREATE TABLE #Mytest2 (id INT, x XML)
INSERT #mytest2
VALUES
(11, CAST('<customer...
June 1, 2016 at 9:33 am
I tried the modified code and it still works for me on SQL Server 2012
June 1, 2016 at 8:23 am
Alan.B (5/31/2016)
CREATE TABLE Mytest (id INT, x XML)
INSERT mytest
VALUES
(1, CAST('1200' AS XML))
...
June 1, 2016 at 5:50 am
tripleAxe (5/6/2016)
upper case / lower case confusion?
SELECT UNICODE(N'a'); ---returns 97
SELECT UNICODE(N'A'); --returns 65
Yep, I want my point please.
May 6, 2016 at 5:04 am
TomThomson (4/28/2016)
BWFC (4/28/2016)
April 28, 2016 at 6:23 am
Luis Cazares (1/29/2016)
tom.w.brannon (1/29/2016)
January 29, 2016 at 9:28 am
I knew that coalesce would return the highest data type but never remember the ordering of that so I thought it was either going to be 10 or divide by...
January 29, 2016 at 6:31 am
One reason I miss a lot of these kinds of questions is that I don't do a lot of DBA oriented work such as backups and logins and server set...
January 15, 2016 at 5:36 am
patrickmcginnis59 10839 (12/16/2015)
tom.w.brannon (12/16/2015)
I don't understand why non-clustered is required. While not a best practice, why couldn't you include the non-key columns in the definition of the clustered index?
I'm...
December 16, 2015 at 6:27 am
I don't understand why non-clustered is required. While not a best practice, why couldn't you include the non-key columns in the definition of the clustered index?
December 16, 2015 at 6:06 am
Toreador (12/11/2015)
Well I guessed right, but the correct answer is surely that ID is not a valid data type for myID.
I also guessed (wrong) when the answer I was looking...
December 11, 2015 at 6:02 am
I don't deal with this level of the db but it seems like a trick question. At https://msdn.microsoft.com/en-us/library/ms190940.aspx it states 'These files are located in <drive>:\Program Files\Microsoft...
December 2, 2015 at 4:50 am
Viewing 15 posts - 31 through 45 (of 99 total)