Forum Replies Created

Viewing 15 posts - 136 through 150 (of 173 total)

  • RE: Query analyzer messages tabs output

    Sorry I'm still not seeing the issue. Why can't you catch the value in a variable, or write it to a temporay table (local or global), or write the...



    Everett Wilson
    ewilson10@yahoo.com

  • RE: inserting test data

    Sounds like 'import data' from the Enterpise Manager' interface is your best bet (fast and easy). This is along the same lines as 'cstrong' and it does cover text...



    Everett Wilson
    ewilson10@yahoo.com

  • RE: Query analyzer messages tabs output

    In addition to copy and paste you can change the 'Execute Mode' to save the 'Results to File'.



    Everett Wilson
    ewilson10@yahoo.com

  • RE: re: Running multiple instances of the same DTS pkg

    Sorry for not responding directly to the question before, but yes you can run multiple instances of a DTS package.

    Quick Test:

    use the DTSrun utility to generate the...



    Everett Wilson
    ewilson10@yahoo.com

  • RE: re: Running multiple instances of the same DTS pkg

    If I remember correctly, DTS is not used dynamically due to being slower than the alternative (SQL stored procedure, XML call). Keep in mind, too, that if you really...



    Everett Wilson
    ewilson10@yahoo.com

  • RE: Fee for mcdba

    The answer to both issues can be found at: http://www.microsoft.com/traincert/mcpexams/faq/procedures.asp



    Everett Wilson
    ewilson10@yahoo.com

  • RE: Error Codes in a SP.

    To add to rajeshpatavardhan, first check to see if @m_err <> 0, then start custom error checking.



    Everett Wilson
    ewilson10@yahoo.com

  • RE: CDO connection behaving differently in job vs DTS

    Hello.

    Yes it does work. I'm running all of my tests form the test server. I've been able to access other computers from a test job...



    Everett Wilson
    ewilson10@yahoo.com

  • RE: nth record of a recordset

    Antares' mention of FETCH seems worth greater comment.

    Barring large overhead due to the cursor, this seems the cleanest.

    Question though, which would be less of a burden, a temporary table or...



    Everett Wilson
    ewilson10@yahoo.com

  • RE: nth record of a recordset

    One way is to use two TOP statements:

    USE Northwind

    SELECT TOP 1 tablename.LastName

    FROM

    (Select TOP 20 LastName

    from Employees

    order by HireDate)

    AS tablename



    Everett Wilson
    ewilson10@yahoo.com

  • RE: disable xp_sendmail

    Thanks for the additional info, this is a neat idea.

    Everett



    Everett Wilson
    ewilson10@yahoo.com

  • RE: disable xp_sendmail

    Guarddata,

    Would it be possible for you to expand on your system a bit?

    Of most interest would be why different tables are used, although any additional information would...



    Everett Wilson
    ewilson10@yahoo.com

  • RE: Multiple Oracle Tables

    Multiple transformation tasks can be added to one connection.



    Everett Wilson
    ewilson10@yahoo.com

  • RE: Computed Column

    This trigger should work. xblt1 and xtbl2 are you TABLE1 and TABLE2

    CREATE TRIGGER DetermineGroup

    ON dbo.xtbl1

    FOR INSERT

    AS

    Declare @sName char(10), @Group char(10)

    Select @sName=I.m_Name

    From xtbl1 S, INSERTED I

    Where S.m_Name=I.m_Name

    Select @Group = Item2

    from...



    Everett Wilson
    ewilson10@yahoo.com

  • RE: help with getdate()

    This works. Although you end up with a varhcar. Note: GetDate returns

    a data type of int, and if you convert this back to datetime you're going

    to have...



    Everett Wilson
    ewilson10@yahoo.com

Viewing 15 posts - 136 through 150 (of 173 total)