Viewing 15 posts - 1 through 15 (of 51 total)
Good question but correct answer is None of the above. Answer should be:
WITH ctePC
AS ( SELECT expression
FROM
( VALUES
('\1\cpu')
, ('\1\ram')
, ('\1\ssd')
, ('\1\gpu')
, ('\1\cooler')
, ('\1\fan')) a (expression) )
select replace(expression, '\1\', '') from...
April 11, 2022 at 11:46 am
The way that I read the MS documentation the 2 TB limit only applies if you specify the MAXSIZE parameter. If you don't specify it, then the size is only...
November 17, 2020 at 2:43 pm
Steve, thanks for the question. As is, you get a syntax error because of the schema in the Create Index statement. If you remove the schema,then it works fine.
As is:
CREATE...
November 12, 2019 at 1:32 pm
The correct answer should actually be 10. You can have up to 9 archived error logs plus the current error log.
October 7, 2019 at 12:30 pm
The correct answer is 1, 2, 3 because the statement provided is invalid, so the table should not change.
August 2, 2019 at 11:30 am
March 12, 2019 at 5:27 pm
The heading says default log directory, but the question says default data directory. Which one is it?
March 12, 2019 at 7:54 am
Actually no rows are returned. I guessed the first answer correctly. The WHERE clause needs to be changed.
September 11, 2018 at 5:49 am
I have driven from Cincinnati to Indianapolis, Columbus and Louisville for SQL Saturdays several times over the past several years. About 100 miles to each city. The events...
July 29, 2016 at 11:46 am
Overall, this is a good article. One thing that I would like to see added is to set the recovery model to simple:
ALTER DATABASE [ComicBooks] SET RECOVERY SIMPLE
GO
The...
October 29, 2015 at 6:41 am
The flip side of a question from last week.
July 17, 2015 at 9:03 am
SQLRNNR (4/1/2015)
William Vach (4/1/2015)
April 1, 2015 at 12:55 pm
Interesting that as of 11:00 AM Eastern, only 16% picked the first answer. I thought that if you have absolutely no idea of the answer to a multiple choice...
April 1, 2015 at 9:10 am
Viewing 15 posts - 1 through 15 (of 51 total)