Viewing 15 posts - 1,681 through 1,695 (of 2,387 total)
Databaes has to be in full recovery mode for logshipping to function.
June 5, 2003 at 7:52 pm
sp_helprotect
Returns a report with information about user permissions for an object, or statement permissions, in the current database.
June 5, 2003 at 7:46 pm
quote:
sp_attatch_db 'H:\testjes.mdf' 'H:\testjestblParent.ndf' 'F:\testjes.log'
Your statemnet is incorrect. There is no database name.
Try following statement.
sp_attach_db @dbname...
June 5, 2003 at 7:43 pm
Use DATEDIFF ( datepart , startdate , enddate ) funcation.
USE pubs
GO
SELECT DATEDIFF(day, pubdate, getdate()) AS no_of_days
FROM titles
GO
June 5, 2003 at 11:10 am
What I understand you want to protect the database backup be restored to somewhere. Try backup database with password option. Sets the password for the backup set. If a password...
June 5, 2003 at 10:45 am
First, Guest account has no any permission to any objects but it is in public role. You can't remove guest account from maste and tempdb. If you revoke permission from...
June 5, 2003 at 10:23 am
Try to search for any errors especially for login info.
June 5, 2003 at 10:12 am
This KB should answer your question.
http://support.microsoft.com/default.aspx?scid=kb;en-us;304261
June 5, 2003 at 10:07 am
OBJECTPROPERTY ( object_id(tablename), 'IsAnsiNullsOn')
DATABASEPROPERTYEX( youedatabase , 'IsAnsiPaddingEnabled' )
DBCC USEROPTIONS
June 5, 2003 at 9:56 am
Can you post the errorlog of SQL Server and the statement that you used to re-attach the database back.
June 5, 2003 at 9:42 am
I have seen share c$, D$ or whatever disappear sometime. To comfirm it, Go to start --> run --> type \\servername\d$ to see whether you can go into the directory....
June 5, 2003 at 9:28 am
You can backup database to the local drive at active node but the backup will be inaccesable once SQL Server fails over to another node. For best practice, I would...
June 5, 2003 at 8:43 am
I would restore the production database and shrink the log file. Moving large MDF file can take a longer time.
June 4, 2003 at 12:56 pm
Use Access 2000 to create linked table to the table that has date column defined with allow 'NULL' and insert data from Access. You will see 'Null' value will be...
June 4, 2003 at 12:23 pm
ODBC administrator --> Tracing Tab --> Start trace --> Run your asp program --> review the trace log file.
Edited by - Allen_Cui on 06/04/2003 11:49:35 AM
June 4, 2003 at 11:45 am
Viewing 15 posts - 1,681 through 1,695 (of 2,387 total)