Viewing 15 posts - 631 through 645 (of 2,897 total)
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
And some examples of actual data in the tables, along with the CREATE TABLE code..
October 1, 2013 at 8:54 am
In SQL 2000 there was the ability to script out database objects with SQL code. I saved the files and copied them to my 2005 server and it works there....
October 1, 2013 at 7:30 am
I'm pretty sure the seeding would start back at 1 .... I have not tested.
You want the seeding for Table_1 in Database_B to continue with the current value in...
September 30, 2013 at 8:02 pm
Viewing 15 posts - 631 through 645 (of 2,897 total)