Viewing 15 posts - 286 through 300 (of 464 total)
What prompted you to change the isolation level to repeatable read? Do you usually run the query in serializable?
August 7, 2008 at 6:14 pm
You should just be able to parse the instance name from the server name ... it will be anything after the backslash (if it exists) and before the colon. ...
August 7, 2008 at 5:59 pm
Check the SQL logs and see if your failures are there. If so, there will be an error code that will let you know why the login is failing.
July 31, 2008 at 10:26 pm
There are plenty of tutorials for Powershell out there, just google it.
Also you can download versions for XP Pro and Win 2003, which is nice if you want to think...
July 29, 2008 at 10:42 pm
If you get the MCP newsletter, there is information in there incuding a few links. This is basically the ranger program opened up to anyone with the skills/time/money. ...
July 15, 2008 at 9:56 pm
First you should grant the appropriate rights to any of the Windows administrators that need access to SQL (for application purposes or otherwise) ... that will enable you to drop...
July 3, 2008 at 2:06 pm
I think you need to also query some other dmvs - sys.dm_os_tasks, sys.dm_os_workers, sys.dm_os_threads etc., depending on what level of detail you are looking to obtain. Tasks is a...
July 3, 2008 at 1:13 pm
If you start the server with the /f parameter, it creates a tempdb with a 1MB primary file ... you can then adjust it to the initial size that you...
June 27, 2008 at 11:22 pm
Rather than a question of decimal vs float, it's a question of scale and precision .... just ensure that the datatype you choose is sufficient for your purposes. I...
June 24, 2008 at 10:06 pm
The mirror is always unreadable, but if you use Enterprise Edition you can create a snapshot of it and read from that.
June 21, 2008 at 7:33 am
It depends on what you need in the way of redundancy ... if you don't need to use RAID then you have several options, if you do then 5 drives...
June 20, 2008 at 7:55 am
You may also want to consider mirroring and a snapshot, if you are using Enterprise Edition.
May 20, 2008 at 12:45 pm
You aren't telling us something. Before the indexes were added, it performed a table scan (which is to be expected, it has to read every row to know if...
May 12, 2008 at 10:13 pm
Have you pre-sized the database files? If each hit is doing an insert (to an audit table say) and the db files are full, they will have to autogrow...
May 12, 2008 at 10:07 am
If you are using the Enterprise edition of SQL2005, you can do online rebuilds with
ALTER INDEX [index] ON REBUILD WITH (ONLINE = ON)
There is no danger of corruption...
May 9, 2008 at 5:13 pm
Viewing 15 posts - 286 through 300 (of 464 total)