Viewing 15 posts - 361 through 375 (of 583 total)
Do you already have a database called DP on the second server? You get this error if there are currently connections accessing the database.
Your error is "Use DP". That creates...
February 5, 2005 at 6:42 pm
Maybe SQL Server isn't runing yet. Check the SQL Server Service Manager that can be found in the task pad. Also, try registering with (local) instead of the computer name. ...
February 5, 2005 at 6:36 pm
Log shipping maintains an identical read-only copy of the entire database, it's all or nothing.
I think you would be better off with transactional replication of your selected tables.
You could...
February 5, 2005 at 6:28 pm
I found an article in BOL called "SQL Server 2000 and SQL Server version 7.0"
but also take a look at the things that were 6.5 features that are no longer...
February 4, 2005 at 10:59 pm
You logic may not be correct. For example if a sponsor has more than one address, this is not going to work because you can only store one addressID in...
February 4, 2005 at 10:51 pm
Check out the database maintenance plan wizard that comes with Enterprise Manager. It can easily do what you need.
February 4, 2005 at 10:42 pm
I don't think there is a way to see them in Enterprise Manager. The only way I have heard is with third party tools, like Lumigent Log Explorer.
February 4, 2005 at 10:38 pm
Forgot to mention, this advice is for user databases, not system databases.
February 4, 2005 at 10:36 pm
You can either do a full backup and then a restore using "with move" specifying the new locations.
Or you can detach the database and move the files. You might want to rename the...
February 4, 2005 at 10:35 pm
The line that drops users is trying to drop users that do not exist in the database yet. You are checking to see if they own any objects, but not if...
February 4, 2005 at 10:26 pm
MSDE would work. There is or at least used to be a personal edition. It's mentioned in BOL, but I don't have the latest BOL.
February 3, 2005 at 8:53 pm
I have done this type of application, but it has been several years ago.
Link to SQL tables from Access. Set up queries that import from the Access tables into...
February 3, 2005 at 7:04 pm
The "Allow Zero Length" property is set by default to true on text fields. I don't think it is a valid property of the date field type. For dates, you need...
February 2, 2005 at 12:38 pm
Just happened to see a better answer in another thread: System_User
February 1, 2005 at 7:21 pm
If you are trying to determine within the web application and it is written in Active Server Pages, you can use the Request.ServerVariables("Auth_user") to get the user account.
In SQL, SUSER_SNAME...
February 1, 2005 at 7:07 pm
Viewing 15 posts - 361 through 375 (of 583 total)