Viewing 15 posts - 631 through 645 (of 2,900 total)
Before I make lots of changes on a production server, do you know which settings might apply to my situation ? That I can access the MySQL data via...
November 7, 2013 at 3:22 pm
You could try looking at your transaction log backups, and see what time of day they were very large. Then try to figure out what was running at that time.
I...
November 1, 2013 at 5:24 am
I never solved it. I just omit results older than 'X' days.
October 24, 2013 at 11:50 am
I should note the downside to this approach is that you only get notified when the code runs, not when the job fails. I have many morning jobs that run,...
October 22, 2013 at 1:47 pm
Oooops. Misplaced bracket.... Corrected it
should be like this:
and h.step_id > 0)-- only look at actual steps
October 20, 2013 at 12:37 pm
Definately NOT clear text. The numbers were encrypted, and the database with the encryption key was in a separate database that was on an encrypted drive with only admin permissions....
October 20, 2013 at 12:26 pm
We were allowed to store CC numbers, but had to have various safeguards in place to be PCI compliant.
October 20, 2013 at 10:34 am
This does not answer your question, but you might find it useful. We have some jobs with multiple steps and if a middle step fails (eg step 4), the job...
October 20, 2013 at 9:11 am
balasach82 (10/15/2013)
October 20, 2013 at 7:26 am
Looking through a server side trace that was running, and logs, I can not see a cause of failure.
October 16, 2013 at 8:24 am
What is your restore script doing ? Any chance it is using an older backup file by mistake, not the most recent one ?
October 15, 2013 at 5:32 am
I have made some progress, but not sure about how the data sources get defined on the original & standby servers.
Currently getting this error when trying to run a report:
An...
October 11, 2013 at 2:30 pm
The vendor is doing this step ? SourceDB --> Repl_DB1
Using SQL replication, or another process ??
October 10, 2013 at 11:39 am
ChrisM@Work (10/1/2013)
select T2.COL1, T2.COL2, T1.COL1, T1.COL2, T1.COL3
from T1
join T2
on T1.COL4 = T2.COL3
where T2.COL4 != 'data1'
and T1.COL1 is not NULL
and...
October 6, 2013 at 6:50 am
Chris, is this the equivalent of a LEFT JOIN based on 4 columns ?
AND NOT EXISTS (SELECT 1 FROM T3
WHERE T3.COL1 = T2.COL1
AND T3.COL2 = T2.COL2
AND T3.COL3...
October 5, 2013 at 7:46 pm
Viewing 15 posts - 631 through 645 (of 2,900 total)