Forum Replies Created

Viewing 15 posts - 301 through 315 (of 1,158 total)

  • RE: Updating large table with minimal impact to the live application

    ek-822869 (9/7/2012)


    sorry for not being clear. I want to update all the rows which may take quite some time but many users are accessing the table. I was asking is...

  • RE: Updating large table with minimal impact to the live application

    Do you mean Altering the table structure?

  • RE: Notification when a Job gets disabled.

    There's nothing "built in" for this but there's no reason why you couldn't put an update trigger on msdb.dbo.sysjobs and msdb.dbo.sysschedules to send an email if the enabled flag is...

  • RE: Replication

    erics44 (9/5/2012)


    can a broken trigger say in the replicated database affect the live database at all?

    Not straight away and probably not for some time. Provided the logreader is running...

  • RE: Replication

    crashdan (9/5/2012)


    SqlServer will prevent you from updating replicated data.

    Sorry. That is incorrect. It will not.

  • RE: Replication

    Not in the way you describe.

    You can publish tables using a foreign key constraint type link using Merge replication but not to a single table. i.e. you can publish...

  • RE: Replication

    Replication uses magazine/newspaper terminology.

    Publisher = Source Server

    Subscriber = Destination Server

    Article = Table/Stored procedure/view

    Publication = Group of articles

    You would want to limit access to the subscriber as there is very little...

  • RE: Replication

    erics44 (9/5/2012)


    What are the issues with using replication to move data between a live database and one used for reporting?

    is this the best way to get real time data into...

  • RE: SQL 2012 Mirgration

    emile.milne (9/5/2012)


    Just read this on MS website.

    β€’The following scenarios are not supported in SQL Server 2012:

    You cannot migrate from a stand-alone instance of SQL Server to a SQL Server 2012...

  • RE: Splitting a huge, a huge table in two or three

    sql-lover (8/18/2012)


    Ok,

    Idea #1

    Splitting the table in two. Keeping table #1 on the actual production database server but with data for current year. Then, based on the PK or date time...

  • RE: Unable to generate script

    greeshma.patla (8/17/2012)


    they are missing in the script..

    My point is, encrypted stored procedures (or other objects) will not be scripted.

  • RE: Unable to generate script

    Are they encrypted?

  • RE: What does β€œ+=” mean in T-SQL

    guerillaunit (8/16/2012)


    What does the following variable assignment mean in T-SQL?

    SET @myvariable += 'test'

    Append to the existing value. Same as

    SET @myvariable = @myvariable + 'test'

  • RE: SQL Server replication and tablediff

    Antony Symonds (8/15/2012)


    Would seem I had an empty guid that i never used.. and I can get round that no problem... but I have hit another snag πŸ™

    When I try...

  • RE: SQL Server replication and tablediff

    Yes. As you would run the script via a query session the inserts would be picked up and cause a conflict. It shouldnt be an issue to resolve...

Viewing 15 posts - 301 through 315 (of 1,158 total)