Viewing 15 posts - 526 through 540 (of 961 total)
Execute the rollback statement a few times until you get a message
The ROLLBACK TRANSACTION request has no corresponding BEGIN TRANSACTION.
August 22, 2011 at 3:06 am
Being as SQl DBA is a high paying career . However becoming one is not easy.
I know that right now SQL DBA's are really hot , cause I keep getting...
August 22, 2011 at 2:14 am
I would first connect to the database engine and view the tables which were created as part of the ROLAP cube. If you open BIDS you should be able to...
August 22, 2011 at 1:54 am
Might want to add the state_desc & recovery model to the above list as well.
select * from sys.sysaltfiles
Gives you the size per database
http://msdn.microsoft.com/en-us/library/bb964743.aspx
Shows you how to execute...
August 22, 2011 at 1:15 am
First things first , who ever is preventing you from creating indexes need to be educated. Frankly you can do more damage writing a bad SQL query than by creating...
August 22, 2011 at 1:08 am
+1
In your example DISTINCT is used as a check to make sure that the output returns only a unique result , I have seen code where developers have put...
August 18, 2011 at 5:24 am
As a rule never bank of the advice of even a GURU without first trying it out yourself. Nobody know what your trying to achieve better than yourself. The rest...
August 18, 2011 at 5:08 am
I dont think there is something out of the box which will allow you to do this. You might want to use some kind of filewatcher application and use it...
August 18, 2011 at 5:04 am
Good luck with writing your own tool , MSSQL already has SMO which will help make your job easier.
August 18, 2011 at 4:40 am
The where clause applies to the underlying tables first the union happens only after that.
the order goes something like
Table scan or index seek with where clause
Merge the results...
August 18, 2011 at 4:08 am
Another option would be to rstore your backup on another instances and run a db compare tool. this would show differences in your current database vs the objects in the...
August 18, 2011 at 3:51 am
I am tempted to say yes because the spid -2 means its an orphaned process and the application needs to create a new connection anyway.
August 18, 2011 at 3:38 am
BinaryDigit (8/18/2011)
In...
August 18, 2011 at 3:07 am
your post is very vague and I think the terms your using do not actually reflect what your looking for.
By Log do you mean the transaction log or the event...
August 18, 2011 at 1:10 am
look up Ceiling and FLOORand get creative.
August 18, 2011 at 12:45 am
Viewing 15 posts - 526 through 540 (of 961 total)