Viewing 15 posts - 886 through 900 (of 1,157 total)
How did you get to SQL 2008? Was this a fresh install?
Also, what are your reasons for wanting to upgrade to 2008R2? Its worth noting the server restrictions differ...
July 28, 2011 at 9:08 am
I dont think we have enough information. What are you trying to run?
You can use 3 part naming to reference something in another database like this.
database.dbo.object
Or you could create...
July 28, 2011 at 9:06 am
I generally use this to generate the TSQL.
select 'exec sp_dropsubscription @publication = N''' + sp.name + '''' + ', @article = N''' + sa.name + '''' +...
July 28, 2011 at 9:00 am
Except in servers under extreme load the performance hit caused by mirroring is negligable. Data loss can be zero with syncronous mode.
July 28, 2011 at 6:27 am
You dont need an identity column to replicate a table. You do require a unique identifier or primary key so that replication can keep track of the rows
July 27, 2011 at 7:00 am
Alexander Chacon (7/26/2011)
July 27, 2011 at 6:47 am
Alexander Chacon (7/26/2011)
Thanks
Alex C
as2higpark (7/26/2011)
When you are seeing issues on the new server, what is the...
July 26, 2011 at 9:13 am
I contacted our account manager who raised the call with the sql server support team.
July 26, 2011 at 12:19 am
Hi guys,
I probably should have said that my system was also responsive all of the time but on what appeared to be random occasions a random query would take an...
July 25, 2011 at 3:12 pm
This is the one
http://support.microsoft.com/kb/979149
You can implement a work around by setting a min and max memory setting and "lock pages in memory" security policy. I had a call with...
July 25, 2011 at 12:53 pm
The are a couple of things I had to do to resolve a similar issue an AMD server I introduced a while ago.
1. I disabled cool n quiet in the...
July 24, 2011 at 7:38 am
I would have guessed the easiest answer is the page size would be a legacy from the engine's Sybase days.
Why Microsoft havent changed this or implemented adaptive pages sizes I...
July 22, 2011 at 5:10 am
Mh-397891 (7/14/2011)
Create view dbo.Orders_Viewas
Select col1,col2,col3,col4 from dbo.Orders
Since this is a published view i'm not sure it will be delivered successfully without the orders object existing first.
Mh-397891 (7/14/2011)
as
Select col1,col2,col3,col4...
July 15, 2011 at 12:20 pm
I'm not entirely sure I follow you. DDL might be useful showing us the source articles and what you want to see at the subscriber.
If I understand you correctly...
July 14, 2011 at 11:18 am
winash (7/14/2011)
From this link:
Problem 2: Updates to Primary Keys
1) Every row updated on the publisher can also...
July 14, 2011 at 7:36 am
Viewing 15 posts - 886 through 900 (of 1,157 total)