Forum Replies Created

Viewing 15 posts - 316 through 330 (of 575 total)

  • RE: Most efficient inner join

    You will have to test it yourself in Query Analyzer by producing the plans and studying them.


    Kindest Regards,

  • RE: Constraints Missing from Transactional Replication

    The NOT FOR REPLICATION property also applies to Triggers!


    Kindest Regards,

  • RE: Schema Question

    Yes!


    Kindest Regards,

  • RE: rewrite code to eliminate isnull

    The ISNULL Function is simply replacing all NULL host_id with the GETDATE() Function. If you do not want to do that then just remove the ISNULL Function.

    Have I understood, or...


    Kindest Regards,

  • RE: Locked table?

    How have you ascertained that the table is been locked up? Are you talking about Table Locks?


    Kindest Regards,

  • RE: converting hours to minutes

    Try this,

    DECLARE @Time NVARCHAR(20)

    DECLARE @Minutes INT

    DECLARE @NewTime NVARCHAR(20)

    DECLARE @HoursToMinutes INT

    DECLARE @Hours INT

    DECLARE @Position INT

    SET @Time = '211:34'

    SET @Position = PATINDEX('%:%', @Time)

    SET @Hours = SUBSTRING(@Time, 0, @Position)

    SET @Minutes = RIGHT(@Time, 2)

    SET...


    Kindest Regards,

  • RE: changing where clause operator dynamically

    Yes. I do something similar here. Give it a go, it should work.


    Kindest Regards,

  • RE: Constraints Missing from Transactional Replication

    In Transactional Replication, the Subscription Database becomes a "Logically read only" Database. Therefore, because there will be no Inserts, Updates or Deletes happenning at the Subscriber, the Unique Constraint is...


    Kindest Regards,

  • RE: list account passwords

    Natively(SQL Server) speaking, I don't think that is possible. The closest thing you can do is use the PWDENCRYPT() function to compare passwords against.


    Kindest Regards,

  • RE: VS.NET 2003 installation of local SQL

    Try uninstalling SQL 7.0 first and then reinsatll .Net 2003.


    Kindest Regards,

  • RE: select statement

    The IsEmpty Function in SQL Server is for Analysis Server only!

    Show us your code and we can go from there to assist you.


    Kindest Regards,

  • RE: replicate from Exchange server

    You can't directly replicate any sort of data from Exchange to SQL.

    You could probably look at exporting the data from Exchange to a csv file and then create a DTS...


    Kindest Regards,

  • RE: Replication problem

    Do both SQL Servers have the same service pack?


    Kindest Regards,

  • RE: Replication problem

    Sounds like the entire replication process has got itself into a knot. You may have to drop replication and set it up again from scratch without doing the snapshot!


    Kindest Regards,

  • RE: Transaction Replication - Doubts about Agent Snapshot

    You need to,

    (A) Use sp_repladdcolumn to add columns to a Table that is marked for replication.

    (B) configure the snapshot properties to either drop the table or truncate it etc etc....


    Kindest Regards,

Viewing 15 posts - 316 through 330 (of 575 total)