Viewing 15 posts - 196 through 210 (of 984 total)
November 23, 2017 at 1:49 am
J Livingston SQL - Tuesday, November 21, 2017 3:04 AMthe website is https://www.essayschief.com ...basically for cheats !
and the OP has a fakemail...
November 21, 2017 at 3:15 am
tfeuz - Friday, November 17, 2017 3:19 PMJust curious - how much RAM do you have in your SQL server?
Anything from 4GB...
November 20, 2017 at 3:25 am
November 13, 2017 at 9:15 am
I think you'll only get problems if your code uses features that are deprecated in the source version of SQL and have been discontinued in the version on the target...
November 8, 2017 at 4:54 am
November 8, 2017 at 4:46 am
Lynn Pettis - Tuesday, November 7, 2017 9:03 AMThanks. I am just glad I was home Sunday when this happened.
Scary when...
November 7, 2017 at 9:11 am
Mighty - Tuesday, November 7, 2017 1:47 AMIs there an explanation why 0x20 (32) results in 107 milliseconds?
Spoiler:
Ë™sɯㄥ0Æ– xoɹddÉ sá´‰ Çsoɥʇ ÉŸo...
November 7, 2017 at 4:21 am
Hah. I was just working through this myself.
This seems to work, but using a table variable rather than your temporary table, Thom A.
DECLARE @DataTable...
November 6, 2017 at 5:23 am
November 2, 2017 at 7:14 am
Yes, that makes sense; however, you can look at the msdb.dbo.sysjobhistory table for the results of the individual steps; combine that with the run-time information from
November 2, 2017 at 6:54 am
When setting up the SQL Server scheduled jobs, what you could do is add a final step to each one along the lines of:
declare @JobName varchar(100)
November 2, 2017 at 4:48 am
Also is it feasible and recommended to have more than 30+ databases...
November 2, 2017 at 3:30 am
Just curious how a time dimension table can have more records (although only one...
November 1, 2017 at 9:27 am
Sounds like an ANSI_NULLS setting thing... Some sample code:
DECLARE @ClosedStuff TABLE (InspectionClosed DATE NULL);
INSERT INTO @ClosedStuff
VALUES (NULL),(NULL),('19000101'),(GETDATE())
SELECT * FROM @ClosedStuff
October 31, 2017 at 5:02 am
Viewing 15 posts - 196 through 210 (of 984 total)