Forum Replies Created

Viewing 15 posts - 76 through 90 (of 121 total)

  • RE: Restore of 2005 mode 80 database

    We had this issue today, and we were not able to restore the 80 compatibility database backup done with SQL 2005 to SQL 2000. Currently we are trying to...


    Have Fun!
    Ronzo

  • RE: Oracle permissions

    I generally use the Connect and Resource roles for my subscribers. Works great for transactional replication with initial snapshot.

    Have Fun!


    Have Fun!
    Ronzo

  • RE: Hot-Add CPUs

    I got it wrong. Based on books-on-line I believed that both 32 and 64 bit versions were acceptable. Careful reading of the link from the "What's New" section...


    Have Fun!
    Ronzo

  • RE: Database logs full? But with lots of free hard disk space?

    Make sure you have 2005 SP 2, as we ran into problem that was fixed where if we changed the log file growth to, say, 1 GB, a known bug...


    Have Fun!
    Ronzo

  • RE: SQL 7.0 deadlocks - unable to get trace 1204 output

    Excellent!

    Thank you for your help.  Apparently it was just a matter of using the trace flags as startup options as opposed to DBCC TRACEON ().  I have the info I...


    Have Fun!
    Ronzo

  • RE: SQL 7.0 deadlocks - unable to get trace 1204 output

    I have tried 1204, 1205, 1206, 3604, and 3605.  I can see them all listed in the log as being turned on, yet nothing is reported in the log when...


    Have Fun!
    Ronzo

  • RE: Problem with large delete (sql 2000)

    We also use the looping delete technique to get rid of approx. 33% of our data in high volume OLTP tables.  The advantage not mentioned is avoidance of lock escalation,...


    Have Fun!
    Ronzo

  • RE: SQL 2005 to Oracle - Transactional, "pre" scripts of snapshot

    Think I figured it out.  I just have to change each of the sp_addarticle lines in my script to include @pre_creation_cmd specified as NONE.


    Have Fun!
    Ronzo

  • RE: MS Access 2003 link tables to SQL 2000

    Yes, absolutely the security info is kept in the link.  That is why you are not prompted for a password each time you connect via the link.  The ODBC DSN...


    Have Fun!
    Ronzo

  • RE: Distribution database size

    Rangark,

    If I remember your previous posts correctly, you disabled the cleanup because you had data queued up for subscribers that was being deleted before the subscriber had a chance to...


    Have Fun!
    Ronzo

  • RE: displaying the rows

    OOPS!!  Sorry, it is basically a repeat of what Jeff had above.


    Have Fun!
    Ronzo

  • RE: MCITP SQL2005 Cert Problem

    At the risk of being a contrarian, I see no value in expiring existing certifications.  I think the certifications should merely be version specific.  I'd challenge any recent SQL 2005...


    Have Fun!
    Ronzo

  • RE: displaying the rows

    It would appear that a simple query like this would solve the problem far more efficiently:

     

    SELECT 

       MAX (CASE PropertyName WHEN 'FirstName' THEN PropertyValue END) AS FirstName,

       MAX (CASE PropertyName WHEN 'LastName'...


    Have Fun!
    Ronzo

  • RE: need help to make a SP

    As Mohammed wrote, just replace your "dateadd(hh,Datediff(hh,0,TransactionDate),0)" with "datepart (hh, TransactionDate)" in both the SELECT and GROUP BY parts of your query.


    Have Fun!
    Ronzo

  • RE: Need help with triggers (I think)

    Do you really need to have it in another table?  Rather than have redundant data, why not just define a view on the two tables you have no control over,...


    Have Fun!
    Ronzo

Viewing 15 posts - 76 through 90 (of 121 total)