Viewing 15 posts - 466 through 480 (of 1,158 total)
s1123 (3/27/2012)
i like to know if i upgrade sql sever 2000 db to 2008 db and after 10 days if developers had problem with compatibility or other and my client...
March 27, 2012 at 10:04 am
obarahmeh 5846 (3/27/2012)
Is there any thing to use that...
March 27, 2012 at 4:29 am
I would say you need to do a bit more research into SQL's high availability options. Transactional replication "could" be used in this way but it is far from...
March 27, 2012 at 4:23 am
I purposefully avoided the language comparisions as there is nothing wrong with either as both can accomplish the same jobs.
Popularity is a different and one is clearly more popular than...
March 23, 2012 at 9:35 am
GuruGPrasad (3/23/2012)
Thank you MysteryJimbo,So its better to use Sp's for inserting into audit tables.
Regards
Guru
Audit purposes is probably one of the few cases I'd stick with triggers as it prevents people...
March 23, 2012 at 4:33 am
GuruGPrasad (3/23/2012)
Hi Andy,Every transaction table have trigger. And it will affect only one table (for audit purpose)
This is the sample trigger
Regards
Guru
To start with, you are better off with three...
March 23, 2012 at 4:31 am
Andy Hyslop (3/23/2012)
I will say that yes a...
March 23, 2012 at 4:27 am
Of course there is. Depending on what action(s) they cover on the table the code potentially has to process in full or partially. They usually include reads/writes to...
March 23, 2012 at 4:25 am
You can create a database snapshot on a mirrored database to make it readonly if thats of any use.
March 22, 2012 at 3:26 pm
EXEC sp_changepublication @publication = 'publication'
, @property = 'replicate_ddl'
, @value = '0'
/*...
March 22, 2012 at 3:20 pm
AK1516 (3/22/2012)
Any clue ...
March 22, 2012 at 3:14 pm
The transaction log will not be cleared on a replicated database until the commands that are meant to be replicated are hardened to the distribution database. This is done...
March 22, 2012 at 9:38 am
No easy cut and paste way. You can generate a couple of scripts using dynamic sql to attach/detach. Perhaps a powershell script to wrap it up and do the...
March 21, 2012 at 3:34 pm
steve smith-401573 (3/21/2012)
March 21, 2012 at 1:48 pm
I would follow the steps in here to remove replication
Having used sp_removedbreplication before it appears to do so indiscriminately. Its worth a shot
March 21, 2012 at 1:45 pm
Viewing 15 posts - 466 through 480 (of 1,158 total)