Viewing 15 posts - 1 through 15 (of 83 total)
Posting this in case it ends up helping someone else.
Client requested in-place upgrade of SQL 2012 to 2019. Upgrade ran flawlessly. Ran CU24 update, update had no problems until the...
January 11, 2024 at 5:05 am
Have you checked the NTFS permissions (not just the share permissions) for the folder you want to check?
Mark
December 27, 2011 at 3:37 pm
Lawrence-136504 (3/18/2010)
I created a schedule that runs every 1 minute. This job has one step that has WAITFOR DELAY...
March 18, 2010 at 2:22 pm
Lawrence-136504 (3/18/2010)
EXEC [master].dbo.xp_sqlagent_enum_jobs 1, 'DomainName\lawrence', 'B508F33F-8C69-42B9-9635-4CA66C05548D'
Msg 241, Level...
March 18, 2010 at 12:31 pm
Lawrence-136504 (3/18/2010)
Which versions have you tested this logic on? I'm getting below error.Msg 8114, Level 16, State 1, Procedure xp_sqlagent_enum_jobs, Line 1
Error converting data type nvarchar to int.
Lawrence:
I have this...
March 18, 2010 at 8:06 am
Date/time calculations can be a pain, especially if the components are stored as INT's, VARCHAR, etc. The below code will take (presumably an INT representation of time), CAST it...
October 9, 2009 at 10:06 am
mbrady, I am a visual learner 😛
Could you post a quick CREATE/INSERT script with some dummy data and the results you expect to see? Most likely the issue is...
October 9, 2009 at 9:23 am
meichner (10/9/2009)
The problem with this option is that everytime a new table is created that depends on the Customer table, I would need to change this stored...
October 9, 2009 at 9:05 am
I should remark that I did this on SQL 2008 EE. SPARSE columns types are new in that version...try comenting out that column or running a profiler session on...
October 8, 2009 at 9:33 pm
Thanks, Jeff - good catch. Depending on your specific requirements, you can also look into using the CAST function on the dividend to get the specificity needed (e.g. NUMERIC(19,5),...
October 8, 2009 at 3:43 pm
Jeff Moden (10/8/2009)
It is a nice hint. I wonder if Profiler will actually pick it up.
Yes sir, it does 😀
Here is what the SSMS UI uses to generate the...
October 8, 2009 at 3:37 pm
mtassin (10/8/2009)
Trust me when I say this.
Yes, trust him ^^. Usually if there's any kind of purge occuring in a system (an actual DELETE, especially for customer data) I...
October 8, 2009 at 3:07 pm
Here's the (anonymized) script I use to set up Database Mail on all new SQL installations. Please change the variables to ones appropriate for your environment.
MJM
--******************************************************************************************
--Purpose : The purpose...
October 8, 2009 at 1:42 pm
Try this...the two additional columns I added are set apart with a carriage return before and after.
SELECT [CWS Division],
[Zone],
...
October 8, 2009 at 1:38 pm
That depends on your definition of "Restored Completely". If you can access the database (period), then your database is recovered. Could you give us some details on the...
October 8, 2009 at 1:32 pm
Viewing 15 posts - 1 through 15 (of 83 total)