Viewing 15 posts - 2,971 through 2,985 (of 3,061 total)
ss1011 (8/28/2008)
August 29, 2008 at 8:41 am
Okay... we all get your co-worker is "fearless" and has not guts to say "no", the question here is... what did your coworker do before dropping the database? Please don't...
August 29, 2008 at 8:36 am
The single most important thing you have to have is a backup strategy aligned with business needs.
Once you have that in place the most important thing you have to remember...
August 29, 2008 at 7:14 am
You can do it resorting to Logon Triggers.
Logon Trigger would start a storedproc so you can do whatever you want there. 😉
August 29, 2008 at 4:49 am
Mazharuddin Ehsan (8/29/2008)But in the case of exp/imp, the DatabaseA need not be alive. This is the essence of backup and restore.
Pure BS 😀
August 29, 2008 at 4:22 am
GermanDBA (8/28/2008)
August 28, 2008 at 9:49 am
Well... it sets 'YourDatabaseName' 'trunc. log on chkpt.' option to true then performs a checkpoint 😀
August 28, 2008 at 8:27 am
I'm not doing your job but here is a hint...
a = lenght of the email column.
b = position of the '@" in the email column.
If (a !< b + 4)...
August 28, 2008 at 8:24 am
Try this...
USE master
go
EXEC sp_dboption 'YourDatabaseName','trunc. log on chkpt.',true
go
USE YourDatabaseName
go
CHECKPOINT
go
August 28, 2008 at 8:16 am
Yes. You may want to start by reading about it, try this...
http://www.devarticles.com/c/a/SQL-Server/Migrating-from-Sybase-to-SQL-Server/
August 28, 2008 at 6:44 am
Assuming you are talking about properly defined referential integrity you just have to create a diagram on Enterprise Manager.
August 28, 2008 at 5:26 am
Ratheesh.K.Nair (8/27/2008)
What are all happens when we restart SQL Server?
Help Desk would start getting angry calls from the user community because you forgot to broadcast the Emergency Maintenance Windows notification...
August 28, 2008 at 4:37 am
CrazyMan (8/27/2008)
... i need to insert Greek characters into SQL server on Default SQL Server Settings.
Problem is you want to do some non-default stuff in a default configured environment.
I...
August 28, 2008 at 4:04 am
Viewing 15 posts - 2,971 through 2,985 (of 3,061 total)