Viewing 15 posts - 1,531 through 1,545 (of 9,641 total)
ANy chance you can use backup compression? That should speed up the time backups take.
July 10, 2012 at 1:43 pm
Sounds like a pretty common environment to me. Almost everywhere I've worked we've had multiple versions of visual studio installed. I currently have 2008 and 2010 installed. ...
July 10, 2012 at 1:40 pm
Not at the same time. A connection is to one server. If you want to query multiple servers in a single query you'd need to setup linked servers...
July 10, 2012 at 1:35 pm
If you know the query, then you have the tables where the data is being modified so you can query sys.triggers to see if any of those tables have triggers...
July 10, 2012 at 1:31 pm
YOu could provide a locking hint on the insert statement to lock the table, thus blocking any other process accessing the table until the transaction is complete.
July 10, 2012 at 1:30 pm
I think this article, http://www.sqlservercentral.com/articles/T-SQL/68467/, has what you need. You'll need to tweak it to work with what you want but it provides the concepts you need.
July 10, 2012 at 1:27 pm
YOu can create a query or queries that use sys.database_files and the FILEPROPERTY function to determine space available. Something like this:
SELECT
...
July 10, 2012 at 1:24 pm
Proper indexes can also help with this issue as you can get more granular locking which increases concurrency.
July 10, 2012 at 1:12 pm
How is the web application connecting to SQL Server? IF it is using a shared login (very common) then you need to get the user name from the web...
July 10, 2012 at 12:43 pm
I agree with Grant.
The only issue with Extended Events on 2008 is that there are some key events that aren't available in Extended Events vs. Trace Events.
If you...
July 10, 2012 at 12:38 pm
First of all, with the way this trigger is written you should add:
IF @@ROWCOUNT > 1
BEGIN;
RAISERROR("This trigger does...
July 10, 2012 at 11:59 am
What version of SSMS are you using?
If you close and re-open SSMS does it work then?
Have you tried using the generate script button instead of clicking OK on the job?
July 10, 2012 at 11:30 am
hemanthnightmoon (7/9/2012)
What i did is
select getdate() AS runtime, SUM (user_object_reserved_page_count)*8 as usr_obj_kb,
SUM (internal_object_reserved_page_count)*8 as internal_obj_kb,
SUM (version_store_reserved_page_count)*8 as version_store_kb,
SUM (unallocated_extent_page_count)*8 as freespace_kb,
SUM (mixed_extent_page_count)*8 as mixedextent_kb
FROM sys.dm_db_file_space_usage
...
July 10, 2012 at 11:25 am
GilaMonster (7/3/2012)
For anyone not on/not paying attention to twitter.....It seems to be official.... I'm a Microsoft Certified Master for SQL Server 2008.
https://twitter.com/SQLintheWild/statuses/220252281847808001
Congrats. I'm not surprised that you made it.
July 10, 2012 at 10:16 am
WayneS (7/1/2012)
All others: Ron (aka bitbucket) has contributed ~ 75 QotD questions, and this is the first one that I've seen from him with this...
July 2, 2012 at 7:18 am
Viewing 15 posts - 1,531 through 1,545 (of 9,641 total)