Viewing 15 posts - 2,521 through 2,535 (of 2,840 total)
The first thing that need to be done is to set up the distributor. Actually if you are setting it with defaults and simple replication, just follow the GUI. That...
January 20, 2009 at 11:07 am
there will be a slight degrdation but it is very small. Publisher has to notify the Distributor that there is a data change. So couple of small steps has to...
January 20, 2009 at 11:02 am
We are using two subscribers with real time publication. Snapshot should be done only once. There is no need to re snapshot it again and again. We use Push publication....
January 20, 2009 at 10:51 am
Glad to be of help.
January 20, 2009 at 10:43 am
You can create a temp table or a variable table and insert into the temp table the values you get from your SP's
DECLARE @TempTab TABLE
( lastName1VarChar(50),
firstName1VarChar(50),
address1VarChar(255))
insert into @TempTab...
January 20, 2009 at 10:27 am
Couple of ways to do this.
1. You can just back up your Test DB and restore it.
2. Detach TestDB, Copy the physical Files over to the VM instance and attach...
January 20, 2009 at 8:34 am
Please check this page to find out how to create Index views. This page even has FAQ. 🙂
http://www.microsoft.com/technet/prodtechnol/sql/2005/impprfiv.mspx
January 20, 2009 at 6:35 am
Please be careful when you are using Snap shot isolation. It uses quite a bit of Temp DB. IO will be higher. Performancwe will go down a bit.
I wrote...
January 20, 2009 at 6:15 am
Ross McMicken (1/20/2009)
January 20, 2009 at 6:13 am
Right Click on the table and choose the option Open Table
January 19, 2009 at 2:13 pm
Well, it is quite simple.
Server Number 1. The Publisher. That is your main production DB where all the transactions takes place. You do not want to disturb this set up.
Server...
January 19, 2009 at 10:24 am
It depends on how busy your DB server is. Keep in mind that you will have to have a Distributor as well. I will always go for three seperate servers....
January 19, 2009 at 8:54 am
This could be a potential problem. If I am not mistaken , you have the OS too installed in the same Drive. This could cause the OS to crash.
January 19, 2009 at 8:03 am
You can look up Encryption on BOL. That would be the best. Or let your App handle the encryption and save the encrypted data in the password Field. And decrypt...
January 19, 2009 at 7:31 am
Viewing 15 posts - 2,521 through 2,535 (of 2,840 total)