Viewing 15 posts - 181 through 195 (of 285 total)
Lynn Pettis (1/20/2010)
shripati (1/20/2010)
You can try this steps:
Truncate the log file --- and shrink it to minimum size possible.
This is the code...
USE DatabaseName
GO
DBCC SHRINKFILE(<TransactionLogName>, 1)
BACKUP LOG <DatabaseName> WITH TRUNCATE_ONLY
DBCC...
January 20, 2010 at 3:35 pm
Hello,
Try this ...
USE DatabaseName
GO
DBCC SHRINKFILE(<TransactionLogName>, 1)
BACKUP LOG <DatabaseName> WITH TRUNCATE_ONLY
DBCC SHRINKFILE(<TransactionLogName>, 1)
GO
Hope this helps ...
\\K
January 20, 2010 at 10:52 am
Donald Burr (1/19/2010)
We script ALL of our replication and NEVER use the interface.
It allows us to break-down are rebuild all of our replication publications and subscriptions...
January 19, 2010 at 7:30 pm
Vinay Thakur-585143 (1/19/2010)
follow this
declare @JobID uniqueidentifier
select @JobID=job_id from distribution.dbo.MSdistribution_agents
where publisher_db=publisherDBName
-this will give jobid for the replication we have created, just use that jobid and rename the job.
exec...
January 19, 2010 at 2:18 pm
@distribution_jobname will not create job with new name
I think that I was not clear of what I want to do .. Let me try explaining..
I want the distribution job...
January 19, 2010 at 1:33 pm
Vinay Thakur-585143 (1/19/2010)
exec sp_addsubscription @publication = N'[Pub_server_name]', @subscriber = N'[Sub_server_name]', @destination_db = N'[DB_dest_name]', @subscription_type = N'Push', @sync_type = N'replication support only', @article = N'Program', @update_mode...
January 19, 2010 at 1:04 pm
Vinay Thakur-585143 (1/19/2010)
exec sp_addsubscription ....,@distribution_job_name ='Distribution1'
Here @distribution_job_name is system use only but if we provide value to this, it will keep it for internal tables for...
January 19, 2010 at 11:15 am
Vinay Thakur-585143 (1/19/2010)
For now I could see the workaround like this.
declare @JobID varchar(1000)
select...
January 19, 2010 at 9:26 am
EdVassie (1/19/2010)
January 19, 2010 at 8:30 am
Vinay Thakur-585143 (1/18/2010)
sp_addarticle
HTH
vinay
http://rdbmsexperts.com/Blogs/%5B/quote%5D
We have many requests coming in to add articles every week. As vinay mentioned ... use sp_addarticle to add article.
This is...
January 19, 2010 at 8:09 am
Vinay Thakur-585143 (1/18/2010)
sp_addsubscription
please see BOL for options.
I think option
@distribution_job_name...
January 18, 2010 at 3:19 pm
Still working ... any ideas Experts ? :hehe:
January 18, 2010 at 1:24 pm
ganci.mark (1/13/2010)
January 14, 2010 at 1:02 pm
Thanks Gail and Jon for your replies
I am still not sure that the extra 150 GB can be used without a reboot :w00t:
I cant remember, but there is a...
December 30, 2009 at 7:48 pm
GSquared (12/30/2009)
I've seen Windows do that before. The only solution I've ever seen work was a reboot.
Thanks for your reply !
What does Mark as Active partition do ? (disk...
December 30, 2009 at 11:31 am
Viewing 15 posts - 181 through 195 (of 285 total)