Forum Replies Created

Viewing 15 posts - 3,766 through 3,780 (of 5,103 total)

  • RE: Retention

    Actually when you are consulting as a "freelance" things are very different you plan your vacations, you look for your own clients and you get usually a better deal in...

  • RE: full text and replication

    >>> i want to replicate the dev db to live but this causes problems with the live text catalogs <<<

     

    What Problems are you seeing ?

  • RE: Moving the Logfile

    After you Detach, the Database Properties is not available (you won't be abe to see it in EM any more until you attach)

    By the way when you attach you will...

  • RE: xp_sendmail to multiple recipients

    ....

    While @@Fetch_Status = 0

    BEGIN

    Exec Master.dbo.xp_sendmail @MyRecipients, @MyMessage

    Fetch Next From MyCursor Into @MyRecipients

    End

    ....

     

    Change the order

     

  • RE: Automated SQL Server Installation

     I know some people that manage 200+ servers, for them 20 is small-ish

     

     

  • RE: Need a RELIABLE table-exist test

    IF Object_id('##table') > 0

    begin

    ...

    end

    ... Tag Team  strikes again

    [edit:]

    Remi,  What do you mean by ...team tag team .. ?

  • RE: Need a RELIABLE table-exist test

    if exists (select * from

    INFORMATION_SCHEMA.TABLES

    where

    TABLE_NAME = 'Your Table'

    and

     TABLE_TYPE = 'BASE TABLE' )

    begin

    --- create table ...

    end

  • RE: UPDATE not working

    Ross,

    You still need a Primary Key to be able to determine which of the duplicates gets the First id or the second or the thrid ...

    For example:

  • RE: Trusted Logins

    Could this be related to your problem with Microsoft Search :

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=176250#bm176507

     

  • RE: schema option in sysarticle table

    looking at the workflow begining at sp_addarticle it seems to be the case that what you are proposing should work but it is definetly a very unconventional method and I would...

  • RE: Need Guidelines For Using SELECT INTO

    Oops! I meant 1 = 0.

    I have to be more careful

  • RE: Need Guidelines For Using SELECT INTO

    Select into in the wrong hands can make more bad than good!

    If they do that,

     Will they be able to create indexes on those tables also?

    Will they be able to select...

  • RE: UNION question

    Actually I was Throwing the towel

     

  • RE: UNION question

    Peter,

    Remi just Put it clearly : Can you post your query and some data? I think that if what Remi or myself posted here is not what you want we...

  • RE: Use RAISERROR with International error messages?

    No

    You call set Language ONCE at the begining of the session and that is it !

    any raiserror from that point on will return the messages on that language as...

  • Viewing 15 posts - 3,766 through 3,780 (of 5,103 total)