Viewing 15 posts - 106 through 120 (of 815 total)
what is the recovery model of your "model" database?
If its full, change it to simple recovery as there is no use of putting "model" database in full-recovery untill you...
December 19, 2011 at 2:25 am
And a little bit more here :-
December 8, 2011 at 9:36 pm
As for windows users- not sure what you are referring to. Windows users have the same SID and therefore do not become orphaned.
Consider this scenarios, If employee 'a'...
December 5, 2011 at 6:06 am
To protect your database, SQL Server gives you the option by giving permission at login level.
Dont give access to any login with whom you don't want to share the database....
December 5, 2011 at 4:09 am
Script is good if we have all the required logins in place else we still need to create the logins first.
Also sp_change_users_login, report only about the orphaned sql login not...
December 5, 2011 at 1:24 am
Thanks for response and looking into this post.
Fortunately the system get recoevered and all files are healthy.
The problem was at OS level which get repaired without fresh OS...
November 30, 2011 at 6:05 am
your litespeed backup script will be something like :-
exec master.dbo.xp_backup_database @database = N'dbname', @filename = N'your backup file location\backupfilename', @with = N'STATS = 10'
Try to run this and please check...
November 29, 2011 at 1:59 am
Seems like the backup was taken by litespeed and during the backup job, there was some problem of disk/network failure.
Can you run the job again by first looking everything in...
November 28, 2011 at 3:29 am
Need to install on all nodes but at the time of registration just mention the server which you are using as of now.
November 28, 2011 at 3:25 am
But you said the you can see the data if you attach the driver to another VM? So if you can see the data you could in theory copy...
November 25, 2011 at 7:23 am
Do you intend to continue using the existing VM and is there space for the mdf's?
If so, you should be able to copy them locally and detach/attach the database again...
November 25, 2011 at 3:53 am
Easiest :-
Create a group and give required permission.
Add users A,B..............................Z to this group.
Easy to manage, Easy to configure security, easy to remove.
November 23, 2011 at 4:20 am
1) Are you sure there is no physical(disk/network) problem in placing the log file?
2) Have you tried differential backup? Are you getting the same error?
Probable solution for your problem :-
Take...
November 23, 2011 at 4:18 am
from cmd prompt, try this :-
sqlcmd -L >c:\serverlist.txt
which will search all the sql server in domain and will write it in c:\sqlserver.txt. You can later on open this file to...
November 23, 2011 at 4:13 am
If your database is already f...d, then you can simply create the new database with the backup/s you have.
If you database is alive and need to be refreshed with backup/s...
November 11, 2011 at 12:58 am
Viewing 15 posts - 106 through 120 (of 815 total)