Forum Replies Created

Viewing 15 posts - 886 through 900 (of 1,157 total)

  • RE: Upgrade from SQL Server 2008

    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...

  • RE: Need to switch current DB within a stored procedure

    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...

  • RE: Remove article from existing publication, does it require a new snapshot?

    I generally use this to generate the TSQL.

    select 'exec sp_dropsubscription @publication = N''' + sp.name + '''' + ', @article = N''' + sa.name + '''' +...

  • RE: 1 DB and 2 Servers

    Except in servers under extreme load the performance hit caused by mirroring is negligable. Data loss can be zero with syncronous mode.

  • RE: Transactional Replication

    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

  • RE: AMD vs Intel

    Alexander Chacon (7/26/2011)


    Hello all, resolution of this appears to be not related to hardware at all but actually from going to SQL Server 2008 R1 to R2 and differences with...

  • RE: AMD vs Intel

    Alexander Chacon (7/26/2011)


    Hi as2higpark, how can I pull those statistics during the execution of a query?

    Thanks

    Alex C

    as2higpark (7/26/2011)


    Alex,

    When you are seeing issues on the new server, what is the...

  • RE: AMD vs Intel

    I contacted our account manager who raised the call with the sql server support team.

  • RE: AMD vs Intel

    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...

  • RE: AMD vs Intel

    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...

  • RE: AMD vs Intel

    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...

  • RE: page size in Sql Server

    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...

  • RE: SQL Server Replication question

    Mh-397891 (7/14/2011)


    Create view dbo.Orders_View

    as

    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)


    Create view dbo.Orders

    as

    Select col1,col2,col3,col4...

  • RE: SQL Server Replication question

    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...

  • RE: Transactional replication :- selective data replication

    winash (7/14/2011)


    I'm not sure about the behaviour.

    From this link:

    Problem 2: Updates to Primary Keys

    1) Every row updated on the publisher can also...

Viewing 15 posts - 886 through 900 (of 1,157 total)