Viewing 15 posts - 2,446 through 2,460 (of 4,745 total)
You only require DTC if you will be using distributed transactions.
MSDTC is separate because no matter how many instances of SQL you install on the cluster node the one MSDTC...
July 7, 2010 at 4:07 pm
If (and only IF) you are not concerned with dirty reads in your reports you could use nolock (equivalent to the read uncommitted isolation level).
SQL 2005 also introduced optimistic isolation...
July 7, 2010 at 3:58 pm
not quite sure what you mean by options available to you in this set up.
As you are replicating the user databases only you would treat this like logshipping or database...
July 7, 2010 at 3:20 pm
Yes. for SQL authenticated IDs it changes the password to a random value for security reasons, which makes it pointless in my view. Its good for windows authenticated IDS though.
July 7, 2010 at 7:44 am
google sp_help_revlogin, that does what you want by script.
there is a transfer logins task in SSIS, but only use that if all your ids are windows authenticated.
July 7, 2010 at 7:27 am
note: edit the resultant script to remove the logins that already exist (builtiun\admins, the SQL2005 local accounts)
July 6, 2010 at 10:07 am
you cannot add it to the backup file.
use your plan B and output the results to a file then run that into SSMS on the DR server.
July 6, 2010 at 9:40 am
SELECT d.name, d.database_id, m.mirroring_role_desc,
m.mirroring_state_desc, m.mirroring_safety_level_desc,
m.mirroring_partner_name, m.mirroring_partner_instance,
m.mirroring_witness_name, m.mirroring_witness_state_desc
FROM ...
July 6, 2010 at 8:34 am
google sp_help_revlogin, you need to bring across the login which is held in the master database, not the application database.
July 6, 2010 at 8:27 am
this is a different problem. repost this to the corruption forum you will get a better response. If you don't have a backup your options will be limited.
find out...
July 5, 2010 at 3:41 am
If you can make sure the directory structures in dev and prod are identical and you don't change the logical file names you can restore with only the replace clause.
July 4, 2010 at 2:10 pm
You say you want to keep A as intact as possible. Any tables you replicate with transactional replication will need a primary key.
July 4, 2010 at 5:29 am
How up to date does B need to be? also sounds like you need to make some changes on B?
If latency is not an issue you could use full backup...
July 3, 2010 at 3:12 am
If you have existing jobs and packages in the destination database they would be overwritten, so if you want to keep them restore is out.
so for jobs keep to what...
July 2, 2010 at 4:16 pm
What is the purpose of the copy. for DR?
As this is SQL 2000 you can get away with backing up the source msdb database, restoring it over the target msdb...
July 2, 2010 at 3:50 pm
Viewing 15 posts - 2,446 through 2,460 (of 4,745 total)