Viewing 10 posts - 1 through 10 (of 10 total)
Nice example
October 9, 2018 at 8:34 am
based on some ideas gained from
https://www.sqlservercentral.com/Forums/1324026/Searching-for-strings-in-SSIS-packages
the following query shows the inital part of what is stored in the packagedata column of msdb.sysssispackages table
SELECT ...
March 13, 2018 at 3:01 pm
> Correct answer: This function returns a GZip compressed version of the string.
I disagree with the answer.
COMPRESS can return a GZip compressed version of the string, but it does...
January 26, 2016 at 2:30 pm
Yes, sp_update_job solved the problem because it flushes the SQL Server Agent cache.
exec @Severity=[msdb].[dbo].[sp_update_job] @job_name='JDN_BRD_Play 2', @enabled=@EnableIRMSjobs
It also solved the problem that was the initial symptom of the problem in...
December 10, 2015 at 3:36 pm
Found possible answer in:
http://www.sqlservercentral.com/Forums/Topic650924-146-2.aspx
Lynn Pettis (4/20/2010)
December 10, 2015 at 2:27 pm
I have a client who is running SQL Server 2005 and we are trying to disable/enable SQL jobs using a SQL stored procedure.
I have two play jobs that just send...
December 10, 2015 at 2:20 pm
Great question. Made me dig into BOL and learn.
I did get to finish lunch 🙂 even though I currently have no responsibility for backups/restores.
Thanks.
March 20, 2014 at 7:24 am
Concatenating Unique Field Values
Lynn's solution does a great job of concatenating field values into one string. However, it repeats duplicates, which can be quite annoying with many duplicates.
If we...
January 17, 2014 at 10:42 am
Thanks for article. Good reminder.
March 1, 2013 at 7:12 am
Thanks for the Interview test.
In a former consulting job (not SQL developer), I interviewed a candidate who did a great job of reading the answers from the questions and got...
February 28, 2013 at 9:37 am
Viewing 10 posts - 1 through 10 (of 10 total)