Viewing 15 posts - 271 through 285 (of 1,158 total)
SQLTC (9/25/2012)
My concern is that i complete my course and get certified but when i look for work it will be consider absolete technology.
This made me chuckle. We have...
September 26, 2012 at 1:25 am
ESAT ERKEC (9/25/2012)
Maybe SSIS execute sql task
This gets my vote as what you after is a denormalised version of the data which logshipping and replication is not going to give...
September 26, 2012 at 12:16 am
You cant convert so you will have to recreate the package in SSIS or run it as it is under 2008.
Read this for further information
September 25, 2012 at 9:17 am
Steve Jones - SSC Editor (9/21/2012)
GilaMonster (9/21/2012)
Stefan Krzywicki (9/21/2012)
capnhector (9/21/2012)
September 21, 2012 at 11:39 am
How big is the table? How frequently is it changed and what percentage of rows? How frequently is it accessed?
September 21, 2012 at 10:42 am
S_Kumar_S (9/21/2012)
We have a tableA with around 100 million records and it is being replicated to table B.
Now since the size has grown significantly, we plan to archive the tableA...
September 21, 2012 at 7:51 am
Brandie Tarvin (2/11/2011)
September 21, 2012 at 7:46 am
Assuming we are talking replication. Do this.
/* ************ */
/*RUN ON DISTRIBUTOR*/
USE master
GO
EXEC sp_adddistributor @distributor = 'distributorname' , @password='pa$$word';
GO
EXEC sp_adddistributiondb @database = N'distribution', @security_mode = 1;
GO
/* Make sure the UNC is...
September 20, 2012 at 9:25 am
anthony.green (9/20/2012)
You will have to do 1 or more of the belowDrop objects
Delete data
Add more drive space
Enable AutoGrowth if disabled
Remove unnessesary files from the file system
Or add another file to...
September 20, 2012 at 9:07 am
muthyala_51 (9/17/2012)
I have setup replication with sync type-replication support only and it's working fine. If I need to reinitialize the subscriptions of any publication, do I need to completely drop...
September 19, 2012 at 4:34 am
muthyala_51 (9/18/2012)
MysteryJimbo (9/18/2012)
September 19, 2012 at 12:51 am
Thats nothing to do with replication.
How are you trying to enable replication?
September 18, 2012 at 10:17 am
Thats nowhere near enough information. How long is a piece of string?
What servers will you buy? What specification? Do you have any licence agreements?
Once you've done the work...
September 18, 2012 at 10:02 am
You need to enable the db for replication.
You can do it through publisher properties or this TSQL
exec sp_replicationdboption @dbname='dbname', @optname= 'publish', @value= 'true'
GO
September 18, 2012 at 10:00 am
Viewing 15 posts - 271 through 285 (of 1,158 total)