Forum Replies Created

Viewing 15 posts - 526 through 540 (of 1,158 total)

  • RE: Syncing transactional database with mdm database

    Lots of options here but it depends on your business logic so you've got ask a few questions.

    How likely is it that both records will be updated at the same...

  • RE: Temporary Table

    bhaveshp.dba (2/24/2012)


    I have Temporary table with Only One column Year varchar(1000)

    Create table #temp

    (year varchar(1000)

    Year

    2012

    2010

    @UptoMonth = 1 or 2 Or 3

    How can I Update This table with

    2011-@uptomonth-01

    2009 -@uptoMonth-01

    If @uptomonth...

  • RE: Jobs having SSIS packages

    SQLRNNR (2/24/2012)


    MysteryJimbo (2/24/2012)


    SQLRNNR (2/24/2012)


    Merging the two queries (since SSIS subtypes do not use dtexec)

    SELECT DISTINCT j.name

    FROM msdb.dbo.sysjobs j

    INNER JOIN msdb.dbo.sysjobsteps js

    ON j.job_id = js.job_id

    WHERE js.subsystem = 'SSIS'

    OR js.command LIKE '%DTEXEC.exe%'

    You...

  • RE: Jobs having SSIS packages

    SQLRNNR (2/24/2012)


    Merging the two queries (since SSIS subtypes do not use dtexec)

    SELECT DISTINCT j.name

    FROM msdb.dbo.sysjobs j

    INNER JOIN msdb.dbo.sysjobsteps js

    ON j.job_id = js.job_id

    WHERE js.subsystem = 'SSIS'

    OR js.command LIKE '%DTEXEC.exe%'

    You beat me...

  • RE: Jobs having SSIS packages

    I would use something like this.

    select j.name, js.step_name, js.command

    from dbo.sysjobsteps js

    inner join dbo.sysjobs j on js.job_id = j.job_id

    where command like '%DTEXEC.exe%'

  • RE: Replication question

    Kwisatz78 (2/24/2012)


    The upgrade in Microsoft Axapta is all done through the application using a new language some kind of cross between SQL and C# and is auto generated by the...

  • RE: SQL Replication

    DesNorton (2/24/2012)


    I run the following in a batch file on the subscriber to try and initialise the subscription:

    REM -- Declare the variables.

    SET Publisher=PPWAPPSRV01

    SET Publication=VHS

    SET PublicationDB=HBH_VHS

    SET PublisherLogin=sa

    SET Publisherpass=*****

    SET Subscriber=TESTSQL\VHS

    SET SubscriptionDB=VHS

    REM...

  • RE: SQL Replication

    Thats where I believe it is done. I'm wondering if by overriding the host in sp_addmergesubscription its done something different. Have you tried it without that parameter?

  • RE: SQL Replication

    Is the server register in the publisher?

    exec sp_helpsubscriberinfo

    Also check for an entry in sys.servers as it should have one on the publisher

  • RE: Replication question

    It doesnt matter which method of backup used since this is manual backup/restore when initialising from backup.

    http://msdn.microsoft.com/en-us/library/ms147834.aspx

    Is the upgrade process out of your hands completely?

  • RE: SQL Replication

    Have you tried this in a push replication setup?

    I did find this on technet as well which suggests its security related in someway but the wording to me suggests its...

  • RE: Replication question

    Also, have you considered initialising from a back up or using a no-sync initialisation?

  • RE: Replication question

    Where is your bottle neck?

    If it is the logreader the only way around this bottleneck is to create another database and publication; data could be fed into here using triggers,...

  • RE: Log-shipping .. interesting question

    Have you considered alternative high availabilty solutions such as mirroring? Or is logshipping you method of choice.

    Mirroring would provide an easier failover mechanism.

    Either way you will need to consider...

  • RE: 3 node clustering in sql server 2008 R2

    Elliott Whitlow (2/21/2012)


    I think you need to understand the cluster quorum settings because for a three node cluster the only way to allow a 2 of 3 failure is the...

Viewing 15 posts - 526 through 540 (of 1,158 total)