Viewing 15 posts - 2,656 through 2,670 (of 7,502 total)
I would also double check if there is no concurrent full database backup running at the same time. Although the errormsg doesn't state it explicitly ... I would just check...
November 8, 2010 at 9:02 pm
cpatel (11/8/2010)
I will try this but tell me that if I have to execute stored procedure in trigger with async than how can I call that.Thanks
Don't rush in to...
November 8, 2010 at 8:56 pm
I really don't want to kick a fallen peer, but this is near to the up most mistake people make when designing tables.
Use the correct data type for your...
November 8, 2010 at 5:50 pm
No, the message only states something is wrong.... which we already knew 😉
Can you check the maintenance plan log, or enable it ?
November 8, 2010 at 5:43 pm
Don't just rely on the ddl trigger taking for granted it is active.
Set up a sqlserver event monitoring, so you detect when the trigger is being disabled ("disable trigger"...
November 8, 2010 at 4:42 pm
as you have noticed any trigger is "in transation".
Your transaction will not complete until your trigger is completed.
Check out SQLServer service broker to get a async solution for this.
Service broker...
November 8, 2010 at 4:35 pm
Keep in mind you posted in a SQL2005 forum. Maybe ask SSC to shift it to a SQL2008 one.
- please post the actual backup error message (check your sqlserver logs)
November 8, 2010 at 4:29 pm
Have a look at SQLCMD in books online !
hmm ... so you're going to have users write your sqlscript and direct upload/update your prod db ??
If that user just needs...
November 7, 2010 at 5:36 pm
I would double check this query using a simple select.
Select COUNT(*) nRows
FROM dbo.convertr$
inner JOIN dbo.tbl_RadioRates
ON SUBSTRING(dbo.convertr$.STA_CODE, 2, 4) =...
November 7, 2010 at 5:25 pm
Jack Corbett (11/7/2010)
November 7, 2010 at 3:51 pm
Jeff Moden (11/7/2010)
November 7, 2010 at 3:44 pm
Jack Corbett (11/5/2010)
November 5, 2010 at 12:15 pm
Roy Ernest (11/5/2010)
November 5, 2010 at 12:12 pm
Jack Corbett (11/5/2010)
Grant Fritchey (11/5/2010)
November 5, 2010 at 7:16 am
GSquared (11/5/2010)
CirquedeSQLeil (11/4/2010)
Grant Fritchey (11/4/2010)
CirquedeSQLeil (11/4/2010)
November 5, 2010 at 6:54 am
Viewing 15 posts - 2,656 through 2,670 (of 7,502 total)