Viewing 15 posts - 4,186 through 4,200 (of 6,679 total)
Check the group membership of any groups that have been added to the Administrators or Users groups on the server. There is probably a group that this person belongs...
February 4, 2010 at 3:17 pm
Unfortunately, that functionality still exists in SSMS but I caution against using it at all. It is rather buggy and can actually update data incorrectly.
Work on understanding insert, update...
February 4, 2010 at 3:11 pm
Yes - sort of. The task will generate ALTER INDEX statements for each index selected for rebuild. ALTER INDEX replaces DBREINDEX...
When an index is rebuilt - the statistics...
February 4, 2010 at 2:58 pm
Yes - it will roll back the transaction that was in process when you cancelled the insert.
February 4, 2010 at 2:20 pm
Just noticed that the database is read only - so, first thing you need to do is get the database out of read only mode, then you can drop it.
ALTER...
February 4, 2010 at 1:50 pm
Have you tried setting the database into single user or offline, then dropping it?
ALTER DATABASE {yourdatabasehere} SET SINGLE_USER WITH ROLLBACK IMMEDIATE;
GO
DROP DATABASE {yourdatabasehere};
GO
Or - Offline:
ALTER DATABASE {yourdatabasehere} SET OFFLINE WITH...
February 4, 2010 at 1:44 pm
When you restore a database from another system, the following things happen:
1) the owner is set to the user that is running the restore
a) this is why your coworker is...
February 4, 2010 at 1:32 pm
To get it to work that way, you have to install Enterprise version and build a scale-out deployment. You cannot setup multiple web servers accessing and using a single...
February 3, 2010 at 2:59 pm
Steve Jones - Editor (2/2/2010)
Will the database still be correct for testing if you have orphaned rows?Typically you truncate the children, then the parents. That way your relationships are intact.
Truncate...
February 3, 2010 at 2:14 pm
Poorly written query performing multiple cross-joins?
February 3, 2010 at 2:09 pm
Instead of using a view - create a stored procedure and use EXECUTE AS on the procedure.
February 3, 2010 at 2:08 pm
Tara-1044200 (2/3/2010)
February 3, 2010 at 2:05 pm
Have you looked at using EXECUTE AS so the procedure runs in the context of a privileged user?
February 3, 2010 at 1:56 pm
By giving that access, anyone who know the web sites username/password now has access to all of the data in your internal apps database.
If there is any chance that you...
February 3, 2010 at 1:15 pm
Just note that if you decide to separate out the web portion from the database, you need to purchase additional license for the web portion. It is only free...
February 3, 2010 at 12:34 pm
Viewing 15 posts - 4,186 through 4,200 (of 6,679 total)