Forum Replies Created

Viewing 15 posts - 1 through 15 (of 45 total)

  • RE: Primary Key Voilation

    There is so much stuff out there for questions like this. Should really start with Books online and try to understand why you are getting the error rather than just...

  • RE: Need help on SQL Server Reporting Services

    Definitely need to elaborate on that!

    However, if I was to assume a couple of things and guess that you have been posed that question from a developer then yes it...

  • RE: SQL backup plan help

    I Agree with Paul above...

    Backup strategy's should be based around business continuity and important of the data, and the impact data loss would have.

  • RE: SQL backup plan help

    mobgrazer 98125 (11/15/2011)


    ... sometimes it gets hammered an hour. Weekly and sometimes bi weekly huge amounts of data gets dumped into the data base.

    Hi,

    What do you consider...

  • RE: how to set a JOB in Oracle

    in PL/SQL:

    BEGIN

    SYS.DBMS_SCHEDULER.CREATE_JOB

    (

    job_name => 'DBSCHEMA.JOB_NAME'

    ,start_date...

  • RE: Openquery: Problem with Oracle datatypes

    Can you clarify what you are trying to achieve?

    datatypes can be controlled through CAST/CONVERT but not sure if this is what you are asking..

  • RE: Replication Status / Information

    Not fully understanding what your asking for, but if you want to see undistributed commands then run:

    use [distribution]

    go

    select d.*, a.article, s.name from MSdistribution_status d

    inner join MSdistribution_Agents s on d.agent_ID...

  • RE: Login failed for user with token-based server access validation error

    I had the same issue with both Token-based and Login-based authentication.

    Ive blogged my solution here:

    http://dbamohsin.wordpress.com/2011/09/06/token-based-server-access-validation-failed-with-an-infrastructure-error/[/url]

    if you dont want to read that then run this code for the user experiencing issues...

    GRANT...

  • RE: Replication Agent Monitor Issue

    Hi,

    I had a similar issue until about ten minutes ago.

    Why it happens i dont know... but read the following post on how to fix it - http://www.sqlservercentral.com/Forums/Topic125951-7-2.aspx

    In...

  • RE: Replication Monitor settings

    As far as i know, the modifications you make in Replication Monitor are session based.

    to make permanent, create an alert or two to manage replication latency

    Performance conditions are:

    MSSQL$MYINSTANCE:Replication Dist.|Dist:Delivery Latency

    MSSQL$MYINSTANCE:Replication...

  • RE: Drop article, needs recreation of snapshot?

    Stop all activity on the database

    Stop replication

    delete subscription (no subscriptions must exist on the publication otherwise it will require a new snapshot)

    drop article

    recreate subscription with no initialization

    restart replication

  • RE: Upgrading sql server with named instance.

    Heres hoping ive understood what your asking for.....

    WHat kind of connection string do your app servers use? If they are hardcoded IP's or host names, then a redirect is not...

  • RE: server time-outs

    Are connections being successfully made to the SQL Server? are the symptoms occurring on more than 1 sql server or more than 1 database... The first steps would be to...

  • RE: Detach a database which is being replicated

    ive tested the above theory and works successfully with replication intact.

    alter database REPTEST set restricted_user with rollback immediate;

    ALTER DATABASE REPTEST SET OFFLINE;

    ALTER DATABASE REPTEST

    MODIFY FILE ( NAME =...

  • RE: Replication question

    In that case, your suggestion about scheduling the log reader would make sense.

    Ensure you consider the following

    1) The size of the transaction log during the batch - it will...

Viewing 15 posts - 1 through 15 (of 45 total)