Viewing 15 posts - 31 through 45 (of 107 total)
Thanks for your reply..
Yes, I dont depend on Task Manager.
Hence I verified all the possible areas and now its time to fix the issues.
Could you please help me with any...
October 11, 2013 at 2:46 am
Buffer Pool Usage at the Moment
BPool_Committed_MB BPool_Commit_Tgt_MB BPool_Visible_MB
--------------------------------------- --------------------------------------- ---------------------------------------
32764.000000 32764.000000 32764.000000
Based on the above findings, I could determine its buffer pool issue.
But, I am confused of task Manager SQL...
October 10, 2013 at 7:28 pm
Please find the actual execution plan.
Please let me know for any recommendations and modifications in the query as posted earlier.
The logic is, we need to pull complete data from a...
October 9, 2013 at 10:29 pm
Mirroring should be newly configured between the servers again.
October 9, 2013 at 10:13 pm
Thanks for your response.
As per the logic we need to fetch full data from tables.
I modified the script using temp tables in it is working as expected, normal run as...
October 9, 2013 at 6:41 pm
Thanks for your reply.
I tuned it to better than earlier, since earlier query was bit critical with joins.
But I am not that much proficient to minimize the query and tune...
October 9, 2013 at 3:50 am
Hope this helps...!
http://msdn.microsoft.com/en-us/library/ms147921.aspx
use [$(PublisherDatabase)]
--Drop all subscriptions
exec sp_dropsubscription
@publication = N'TestPubs',
@article = N'all',
--@subscriber = [$(SubscriberServer)]
@subscriber = N'all',
@destination_db = N'all'
--Drop publication
if exists (Select 1 From...
April 20, 2013 at 10:23 pm
Hope this helps you with some understanding..
April 18, 2013 at 2:07 am
This could you help you to understand the setup and process.
http://msdn.microsoft.com/en-us/library/ms146922(v=sql.90).aspx
http://msdn.microsoft.com/en-us/library/ms151196.aspx
Some more information from external blog - http://sqlphilomath.wordpress.com/2011/08/07/how-to-configure-transactional-replication-with-updatable-subscriptions-step-by-step/
NOTE : http://msdn.microsoft.com/en-us/library/ms143550%28v=SQL.110%29.aspx
April 18, 2013 at 12:53 am
Check the services running from Config Manager. Check all are enabled.
I just did this last week. You can follow the instructions from - http://msdn.microsoft.com/en-us/library/cc707783.aspx
It should run and upgrade...
April 18, 2013 at 12:47 am
Hope this help...!
exec sp_dropserver @server = 'ASMREPLICADB' ,@droplogins = 'droplogins'
go
-- Add linked server
EXEC sp_addlinkedserver
@server = 'ASMREPLICADB'
, @srvproduct = ''
, @provider= 'SQLOLEDB'
, @datasrc=...
April 17, 2013 at 11:16 pm
If SQL is consuming 2.3 GB, and if you see /3G switch already enabled, why you want to remove ?
If you have 4 GB of RAM, I would go setting...
April 17, 2013 at 11:08 pm
Check SELECT @@version.
If it is SQL Server 2008, please follow below. If you have tried repairing option. Check again SELECT @@Version.
For SQL Server 2008:
Download the Service pack 3 manually and...
April 17, 2013 at 11:02 pm
Thanks much for your reply, anymore suggestions or changes on the script, that I have been using ?
It wont result for SQL Server 2012 and R2 versions.
Any help on that...
April 15, 2013 at 7:55 am
Viewing 15 posts - 31 through 45 (of 107 total)