Viewing 15 posts - 28,471 through 28,485 (of 39,810 total)
you should be using roles exclusively, not adding people to dbo, db_owner, or giving them permission.
Create user defined roles, assign people to those roles and things are much simpler.
May 27, 2008 at 3:03 pm
Are there anything different about the transactions? If you take one that works, add another nested transaction, and then try it, does it still abort?
Seems strange. Can you provide some...
May 27, 2008 at 3:02 pm
you can script out the objects (tables, views, etc.) and then run this on the new server. I think permissions is an option when scripting.
May 27, 2008 at 3:00 pm
You do have to ask questions and get clarification, but I agree with Grant. If it happens too much, then they'll likely look elsewhere. Being able to communicate with the...
May 27, 2008 at 12:50 pm
Standard here at SSC. Only one server, no need for Ent features.
May 27, 2008 at 12:48 pm
Employers do adjust ranges over time, but not that often. From some large companies I've worked for, they review salaries every 4-5 years, often buying survey results from companies.
So fill...
May 27, 2008 at 12:47 pm
Use SQLCMD as mentioned. BCP doesn't run stored procedures.
May 27, 2008 at 12:45 pm
yes, it's no different than you typing multiple batches into QA. As long as you're on the same connection, the transactions work.
May 27, 2008 at 12:45 pm
Great job Phil!
I've got something similar in the works, or maybe I've published one. Can't remember now, but pulling the plug is tough.
What's crazy is that if you can't salvage...
May 27, 2008 at 12:44 pm
You could write a VBS script to do this using the object model. Don't have one handy, but search for one. Might be something at sqldts.com
May 27, 2008 at 12:29 pm
If you're really concerned, give it a long, one-time password that you don't write down. Randomly bang on 20 keys to get it.
Don't rename it or delete it. You'll get...
May 27, 2008 at 12:28 pm
I'd say Ben-Gan's Inside SQL is a must for 2005.
The others are good, and any of the admin books will work.
May 27, 2008 at 12:27 pm
correct, if it's the first proc, you can ignore exec, but as a matter of practice: Use it.
This will work as well:
use master
go
sp_detach_db 'konfig'
go
sp_detach_db 'ndfi'
But do this:
use master
go
exec sp_detach_db...
May 27, 2008 at 12:26 pm
Tend to agree with Michael. Monitor and observe the system. AWE isn't needed for 64-bit and my guess is SQL will keep building cache and run to 30GB unless you...
May 27, 2008 at 12:24 pm
Viewing 15 posts - 28,471 through 28,485 (of 39,810 total)