Viewing 15 posts - 241 through 255 (of 370 total)
Can I ask why you want to get the admin password? Normally, the reason for a password it to keep the wrong people from accessing the data.
Steve
February 22, 2007 at 3:00 pm
Another thought would be to break the job into more than one job. The stored proceedure that can run more than a minute could be put into it's own job...
February 19, 2007 at 1:10 pm
For those of you who want to use the extended properties and think that there is no extended properties for the table in general, there is a way to enter...
February 1, 2007 at 3:40 pm
Thank you.
I have added the user guest to the roles of db_denydatareader & db_denydatawriter for all appropriate databases.
Steve
February 1, 2007 at 3:19 pm
I am trying to remove guest from some of my database (including model) but get an error message.
I've tried "sp_revokedbaccess 'guest'" from query analyzer and Delete User from Enterprise...
January 31, 2007 at 11:00 am
One thing that might be helpful is to script out the database users and roles and Sql Server logins. Then you can save it to a script file, edit it...
January 18, 2007 at 2:53 pm
If amounts 2 & 3 are truly calculations based upon other calculations, could they be expressed in terms of the original amount field?
SELECT Amount as Amount1, Amount / 10 AS...
December 26, 2006 at 3:12 pm
From BOL:
If the CREATE TABLE statement is executed by a login associated with a user ID that has only create table permissions, owner must specify the user ID associated with...
December 26, 2006 at 12:53 pm
Have you tried granting create table permissions to the user? You can grant permission to create a table within a database with the statement
GRANT CREATE TABLE TO User
This also works...
December 26, 2006 at 11:40 am
I believe that there is no "normal, usual language" for connecting to databases. Almost all web develpment should have the capability to handle it. Do you have an environment that...
December 19, 2006 at 7:31 am
I concur with Robert that switching to bulk-logged recovery instead simple recovery may be better, but I would do a Full Backup for step 5. If you don't, switching back...
December 18, 2006 at 12:23 pm
From my understanding, the Bulk-logged model works just like a full recovery model until a bulk operation occurs, then it functions like a simple recovery model. The only advantage I...
December 18, 2006 at 8:21 am
You didn't say if the 22 databases on different servers would exist as 22 databases on one server or would they be merged into one database on the one server. ...
December 11, 2006 at 12:38 pm
The first option was exactly what I needed. Thanks!
Steve
December 7, 2006 at 9:29 am
I'm new to replication.
I'm trying to set up a snapshot replication that will run once a day for our web page. I am trying to set up a push subscription...
December 6, 2006 at 2:32 pm
Viewing 15 posts - 241 through 255 (of 370 total)