Viewing 8 posts - 1 through 8 (of 8 total)
This error may not cause your system down. The database tempdb is automatically shrunk normally. There is an "bug" here. We may get an error message if a user sends...
October 5, 2006 at 9:03 am
Not really. I can easily assign read privilege to a user. The, the user can retrieve all information from the system database. However, it is not enough for an inexperience...
October 4, 2006 at 2:08 pm
To change default database,
sp_defaultdb [ @loginame = ] 'login' , [ @defdb = ] 'database'
To add a db user,
sp_adduser [ @loginame = ] 'login' [ , [ @name_in_db =...
October 4, 2006 at 7:47 am
Is there any stored procedure we can use for this purpose?
October 4, 2006 at 2:18 am
sp_spaceused may give you desired info.
October 4, 2006 at 12:58 am
In my memory, you can attach a database to a new version. But it is not true vice versus.
You need to run sp_users_login to fix the orphan users.
Hopefully, the information...
October 4, 2006 at 12:53 am
You may try:
BACKUP DATABASE WITH NO_TRUNCATE
October 4, 2006 at 12:51 am
Viewing 8 posts - 1 through 8 (of 8 total)