Viewing 15 posts - 46 through 60 (of 233 total)
Use
set statistics io on
set statistics time on
while running the SP. Also you can see the execution plan of both of the statements to see if there is any difference.
June 3, 2013 at 2:36 pm
First 2 statements will be like this. FOr the third.. you have to give more info.
select * into Test from [server].[database].[scheme].MainTable
select col1 into Test1 from Test
June 3, 2013 at 2:33 pm
Yes. You can achieve this in one go.
June 3, 2013 at 2:18 pm
Looks like a connection issue between SQL Server & the drive that holds the log file. SQL server can not access the log file and it looks like the drive...
June 3, 2013 at 1:02 pm
You can create more accounts afterwords and assign sysadmin role to them.
But SQL Server administrators is SQL Server administrators you can not have reduced privilege on that. For that know...
June 3, 2013 at 12:26 pm
Check this out. This may help you.
http://www.sqlskills.com/blogs/kimberly/8-steps-to-better-transaction-log-throughput/
May 24, 2013 at 5:53 pm
No. Named constrains will cause problem only when they are either altered or deleted at publisher.
May 22, 2013 at 2:01 pm
Any other error message?
Check this article. it might help.
http://blogs.msdn.com/b/chrissk/archive/2009/05/25/transactional-replication-conversations.aspx
May 22, 2013 at 8:55 am
Just observed one more thing. your default in not named. Always create named defaults if you are using replication. It creates issue if you drop or alter defaults.
May 22, 2013 at 8:44 am
You are doing it in perfectly right way. You do not have to drop the whole subscription.
May 22, 2013 at 8:43 am
If you make Schema changes to Publisher they are propagated to Subscriber by default, unless set otherwise while creating replication.
So as you said, you can wait if it resolves the...
May 22, 2013 at 8:35 am
Could you post the execution plan, from both application query and query from Query analyzer.
May 22, 2013 at 7:16 am
Viewing 15 posts - 46 through 60 (of 233 total)