Viewing 15 posts - 511 through 525 (of 1,655 total)
Personally, I would use the generate script task to script the views into a file and then execute the script on the new server.
As an alternative you can use the...
January 20, 2009 at 6:35 am
Jasper Smith has written a tool to sort solution files in SSMS. I haven't tested it with SQL 2008, but I would assume it will work as well since the...
January 20, 2009 at 5:02 am
If this is a SQL Express installation done by a software package, you might be lucky that you can find the sa password in the connection string. Way too often...
January 20, 2009 at 3:48 am
The normal status for the secondary database with logshipping would be STANDBY.
Why do you use NORECOVERY at all? Do you use the maintenance plan to setup logshipping or some...
January 16, 2009 at 5:46 am
Grant Fritchey (1/15/2009)
Other than that, no I don't think...
January 16, 2009 at 5:31 am
INNER Join you use if there's a one-to-one relationship between two tables. A CROSS JOIN is the toal opposite of an INNER JOIN .
The example should make help to make...
January 16, 2009 at 3:10 am
No you don't have to install 4 files. The 4 executables on the download page are meant for different versions. Just pick the file(s) you need for your version of...
January 16, 2009 at 2:23 am
When you simly copy the tables to another database, without creating the tables first, the new tables will be created with the default collation of the new database.
The error...
January 16, 2009 at 12:48 am
You're on the right way. Using Export/Import will transfer the data but not the collation.
January 15, 2009 at 3:59 am
If I understand you correctly, you have installed SQL Server on a 2 node cluster and when you failover to node 2 some jobs don't give an SSIS error.
SSIS...
January 15, 2009 at 2:31 am
Yes, both these changes will be applied to the mirror DB.
Basically every action which is logged in the transaction log will be applied to the mirror.
January 15, 2009 at 2:24 am
First I'd like to ask why your developers use the sa account ? That's very bad practice and I would never allow that.
The reason the account is locked is that...
January 15, 2009 at 2:19 am
Did you try to unregister the server in EM and make a new server registration ?
January 14, 2009 at 7:56 am
For the database it's best to change the owner using sp_change_dbowner.
Removing the login will not have any immediated impact but g.e. running sp_help will fail if the the owner...
January 14, 2009 at 3:19 am
Viewing 15 posts - 511 through 525 (of 1,655 total)