Viewing 15 posts - 5,896 through 5,910 (of 6,024 total)
SQL Server's default transaction isolation level is READ COMMITTED, and I'd suggest leaving it as is. Also, run the update query through Database Tuning Advisor and see what it reccomends.
September 14, 2010 at 1:22 pm
steveb. (9/14/2010)
torpkev (9/14/2010)
September 14, 2010 at 11:12 am
I use the following script to grant permission to a "power user" role; which isn't an administrator the database but a user who occasionally needs to do things like troubleshoot...
September 14, 2010 at 8:22 am
JunkMail Victim (9/1/2006)
September 14, 2010 at 7:46 am
What do you mean by ReadOnly columns?
September 13, 2010 at 3:40 pm
If it were me, I'd script it all out. From what I've read, I'd suggest you use the Import and Export Wizzard to copy the required tables. You have the...
September 13, 2010 at 3:23 pm
Anders Pedersen (9/13/2010)
Grant and Eric,I would bet you are right about ANSI settings. Didn't even think of that!
...
...
A few years back I was trying to debug a...
September 13, 2010 at 1:48 pm
Each client tool has it's own connection and maybe even different connection settings. For example different values for ANSI_WARNINGS, ANSI_NULLS, QUOTED_IDENTIFIER, etc. can result in different execution plans. Some settings...
September 13, 2010 at 12:43 pm
Mike Byrd (9/13/2010)
September 13, 2010 at 9:34 am
Jeff Moden (9/12/2010)
4. Code - This is where the true...
September 13, 2010 at 8:30 am
The more enlightened economists point out that recessions are a perfectly natural part of long term economic cycles, and it always preceeds some transition to a new paradign. Companies...
September 10, 2010 at 9:07 am
When it comes to installing SQL Server Standard and Enterprise edition for a corporate IT groups, these installations are typically performed by a DBA who is familiar with the options...
September 9, 2010 at 4:56 pm
The following query should give you the last 3 backups for each database and include the columns: database_name, recovery_model, backup_type, size_gb, backup_start_date, backup_finish_date, and duration_minutes.
select * from
(
select...
September 9, 2010 at 9:15 am
If Information Technology ever stopped being fun and rewarding, civilization would soon collapse.
September 9, 2010 at 8:37 am
TravisDBA (9/8/2010)
You think that is frustrating. I am still waiting for them to put a WHERE clause on a TRUNCATE statement.:-D
What makes the TRUNCATE statement more efficient is that it...
September 9, 2010 at 7:22 am
Viewing 15 posts - 5,896 through 5,910 (of 6,024 total)