Forum Replies Created

Viewing 15 posts - 4,891 through 4,905 (of 5,103 total)

  • RE: Gurus Need your help!!!!

    quote:


    quote:


    The easiest way for me, but maybe not the best in performance could be...

  • RE: Gurus Need your help!!!!

    quote:


    The easiest way for me, but maybe not the best in performance could be to use a couple of cursors:

    CREATE TABLE #1

    (Name...

  • RE: .

    ?

  • RE: sp_dboption

    quote:


    EXEC sp_MSForeachdb 'if "?" IN ("db1", "db2", "db2") EXEC sp_dboption ?, "dbo only", true'

    Edited by - jdausubel on 12/22/2003 10:51:35 AM

  • RE: Do Hints Work Anymore?

    I am assuming you have a non-clustered covering index. Does it makes a difference if you change it to CLUSTERED.

    It happened to me once

  • RE: MS2000 login

    GO to EM

    Right Click on your server Select properties and on the security tab update the password!

  • RE: SQL Server to Access Data Transfer

    Try replacing ALL "#" by "[0-9]"

    ex:

    "###" ---> "[0-9][0-9][0-9]"

  • RE: Execute the SQL generated as a Resultset

    OR

    at the end of your query you could use

    DECLARE @qry varchar(8000)

    SELECT @qry = COALESCE (@qry, ' ') + "SELECT TOP " + LEFT(RowCnt,1) + "...

  • RE: SP Problem With VB6

    quote:


    OK... Does that mean that if I create a basic SP with an insert I will still always be returned this "@RETURN_VALUE"...

  • RE: Traping SQL returning errors

    quote:


    You can try to do something like this:

    If exists(select * from table where key = @key)

    insert into table (key,...)

    ...

  • RE: Cast and Convert Problem in SQL server 2000

    MAKE sure the values you are saving are in the right order on the US server,

    I mean = mmddyyyy AND NOT ddmmyyyy

    an easy way to check will...

  • RE: SQL Mail Attachments

    It is A LOT easier to use DTS for this!

    I have try xp_sendmail using the @separator=',' and @attachments = 'file.csv' and even though it send the Formating abilities of this...

  • RE: Importing into Access

    If you are going to do this in DTS you will:

    1. Create

    a) Access DB Connection

    b) Execute SQL Task

    ...

  • RE: Extended Stored Proc to send in MSMQ

    What's the Problem with the Message Queue Task within DTS?

    is it not good for your purposes?

  • RE: are FKs a detriment to performance?

    This is a nice thought:

    You CAN'T HAVE YOUR CAKE AND EAT IT TOO!!

    If you think about performance only then

    1. FK are indeed afecting you insert and...

Viewing 15 posts - 4,891 through 4,905 (of 5,103 total)