Viewing 15 posts - 1 through 15 (of 24 total)
Seems internally it is running the following command through a user written SP..
DBCC UPDATEUSAGE(dbname) WITH COUNT_ROWS, NO_INFOMSGS
Error:
Running Command: DBCC UPDATEUSAGE(dbname) WITH COUNT_ROWS, NO_INFOMSGS [SQLSTATE 01000] (Error 0) Msg 1205,...
June 17, 2014 at 3:59 am
This can be done by taking a synchronous backups in production and restore them to development.
Here are some links that will guide you,
June 17, 2014 at 3:54 am
Does the job has multiple steps?
If Yes, you should have triggered the job using Activity monitor and its waiting for response to submit your response for start at step. In...
August 15, 2013 at 4:58 am
Try something like this.
xtable has test column with datatype nvarchar.
select test from xtable
Output:
test
1
2
3
select CONVERT (int, xtable.test) from xtable
Output:
1
2
3
August 15, 2013 at 4:45 am
The query is a SSRS generated query. And it differs from each time.
It's not using any DML statements either.
It includes select and multiple joins (Left Join). I've checked the actual...
March 29, 2013 at 3:23 am
I haven't done that before..
I'm aware that backups can't be restored to lower version and not about this.
Thanks for your inputs...
May 26, 2012 at 8:33 am
Try attaching to Higher Version of SQL server, if attaching works fix it. detach it and attach it back to SQL Server 2000.
I'm not sure, that this will work. But...
May 26, 2012 at 8:26 am
Have u found any solution on this? I'm also facing the same issue...
March 4, 2012 at 4:36 am
Did u find any answer.. I'm facing same issue.
February 17, 2012 at 11:32 pm
You are not selecting the right backup..
February 10, 2012 at 9:50 pm
Try adding one more data file to the database in to a new disk where you have got good amount of place.
We got the same error and the above work...
January 28, 2012 at 3:33 am
Script not working for me... 🙂
Version 2005 RTM
September 20, 2011 at 5:56 am
I figured it out, Finding MDF file and attaching it will give the information of other files as well.
August 14, 2011 at 10:47 am
Step 1:
Execute the Following in the database context where you need to pull those permissions, This will create a sp_showpermissions stored procedure.
/****** Stored Procedure dbo.sp_showpermissions v 1.0 ******/
CREATE PROCEDURE sp_showpermissions
@group...
August 7, 2011 at 12:30 am
Hey guys... The thread is easiest but restoration went like a mission....
After the Successful restoration the Customer gave me a Big Surprise Smile...
txtPost_CommentEmoticon(':w00t:');
Anyways I'm just documenting the stuff.....
August 5, 2011 at 7:52 pm
Viewing 15 posts - 1 through 15 (of 24 total)