Viewing 10 posts - 1 through 10 (of 10 total)
I was thinking something similar and it might just be a better solution then using SQL aliasing. Because you can execute a script at the end of the subscription...
February 26, 2014 at 12:11 pm
I was able to track down the cause of the replication job disappearing. The development team was dropping and recreating the database from a previous backup that did not...
February 25, 2014 at 12:58 pm
I would also take any ideas on how to automatically retry a child package in the event of a failure as an alternative workaround. Because really, this issue sounds...
January 21, 2013 at 3:54 pm
Whoops. Thanks for the other suggestion as well. It might be very handy in a future project. Always learning new tricks Thanks!
November 4, 2011 at 12:21 pm
Instead of using a Derived Column Expression I used a CASE Statement after the Data load.
UPDATE DimTable
SET [rank] = CASE
WHEN [lv] BETWEEN 1 and 19 THEN 1
WHEN [lv] BETWEEN 20...
November 4, 2011 at 12:05 pm
Lynn Pettis (8/23/2011)
August 23, 2011 at 3:53 pm
NJ-DBA (8/23/2011)
can you test on a local drive as opposed to network share?
Is the volume compressed?
The successful completion...
August 23, 2011 at 3:05 pm
Chuck Hottle (8/23/2011)
August 23, 2011 at 2:02 pm
Thanks all for the suggestions.
However, I question if it will work as I just tried to run the
EXECUTE master.dbo.xp_delete_file 0,N'\\cifshare\sqlBackup\Servername_folder\databasename_folder\',N'bak'
Nothing was touched even after I ran the execute...
August 23, 2011 at 1:53 pm
I tried adding a "\" at the end of the Path but that did not work either. I seem to remember trying that at some point. I also...
August 23, 2011 at 1:05 pm
Viewing 10 posts - 1 through 10 (of 10 total)