Viewing 14 posts - 1 through 14 (of 14 total)
We're in the process of moving to Commvault, and if i read the documentation correctly, it defaults to a full backup after 24 log backups. There is a registry...
June 7, 2011 at 12:16 pm
try this
case when sum(dbo.INV_REC_JAN_JUNE_2010.RCP_QTY) is null then 0
else SUM(dbo.INV_SHP_JAN_JUNE_2010.SHIP_QTY) end as rcpt_qty,
case when SUM(dbo.INV_SHP_JAN_JUNE_2010.SHIP_QTY) is null then 0
else SUM(dbo.INV_SHP_JAN_JUNE_2010.SHIP_QTY) end as ship_qty,
October 27, 2010 at 1:15 pm
When you're performing the detach/attach, might try scripting the action to new query window and see if somethings setting it there.
October 20, 2010 at 12:58 pm
This has been fixed.
I upgraded to SQL 2008 SP2 and that updated the file associations to 2008.
October 20, 2010 at 8:57 am
i ran across an issue like this a few weeks ago. if you're doing these imports via ssis, you can add a script task before the import, i found...
October 1, 2010 at 12:55 pm
What's the login error message from the SQL Server Log?
September 27, 2010 at 8:23 am
Figured out that this is happening after the nodes change in the cluster. Not sure why that's causing it yet though.
September 24, 2010 at 3:17 pm
This job decided to run again last night, we still haven't figured out how it is starting. Thanks for your ideas.
September 24, 2010 at 7:28 am
i think that is a windows property. if you go to display properties, appearance tab, click advanced, and scroll down in the item list to tooltip you should be...
September 21, 2010 at 7:58 am
set the date column to not null, then it will use the default if you don't supply any data for that column
September 20, 2010 at 1:07 pm
One way would be to set up a backup/restore process.
September 10, 2010 at 10:01 am
If the job is kicked off from another job, the history says it was invoked by our SQL Agent account, not the job schedule.
September 10, 2010 at 9:24 am
I'd wondered if someone had accidentally ran it or it was kicked off by another job or something, but the history specifically says it was invoked by that schedule.
September 10, 2010 at 8:59 am
I believe you put the execute sql tasks in a sequence container and set the TransactionOption property of the container to required.
September 10, 2010 at 8:47 am
Viewing 14 posts - 1 through 14 (of 14 total)