Forum Replies Created

Viewing 15 posts - 106 through 120 (of 126 total)

  • RE: Big SQL Server 2005 News

    Steve, you say to wait till 09:00 AM.  The server time is now 12:39 AM.  Is something wrong?

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: SQL Server DBA in Jacksonville, FL

    If you are willing to look at somebody from SA, let me know.

    jbotma@namakwa.co.za

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: Qty subtraction - multiple rows

    Maybe you will understand this syntax easier: You do not need grouping because of the sub-select.

    update products

    set qty = a.qty - (select sum(b.qty) from invoice_product b where b.product_id = a.product_id)

    from products a

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: Split data in SQL Table

    To summarize:

    Create a Temp table with an autokey and the other fields you want to output.  Then run : INSERT INTO TempTable SELECT Field, Field ... FROM MainTable ORDER BY...

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: Access Projects combo problem

    Paul, you say you are worried about data traffic so just something to watch out for:  I havn't used Access for about 3 years, but one of the things it...

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: DTS changes character > 128

    I have taken your advice and tried different drivers like: MS OLEDB provider for Oracle, Oracle provider for OLEDB, MS ODBC Driver for Oracle and the Oracle ODBC Driver, but...

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: DTS changes character > 128

    Coincidence? I don't think so...

    The datatypes are char (30) on both sides. My collation name on SQL is SQL_Latin1_General_CP1_CI_AS.

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: to cursor or not to cursor

    When you are using a temp table there is a way to do row by row processing without using a cursor:

    DECLARE @Key ....

    SELECT TOP 1 @Key = tKey FROM #Temp

    WHILE...

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: This is a hard week to me

    If you got the error message by looking at the job history details, then you already know which dts package is causing the problem.  The only way to determine which...

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: DTS package will not run with the scheduler

    The package is run by the SQL Service Agent when it is fired from the scheduler.  So you must check the rights of the SQL Service Agent.

    Also, what SQL version...

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: Database Cloning?

    I think DTS (Import objects) will be the best.  Save the package because they might want to do it in the future again.

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: MS Access Tables To SQL Server 2000

    You can move the tables to sql and link them back to access.  Your web pages will not see the difference. (Except maybe a little faster and more secure.)

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: How to transfar Oracle data to SQL Server

    Of course, before you can do any of that, you need to install the Oracle Client software (The network portion) and using the Net Configuration Assistant, add a local net...

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: How to transfar Oracle data to SQL Server

    Of course, before you can do any of that, you need to install the Oracle Client software (The network portion) and using the Net Configuration Assistant, add a local net...

    5ilverFox
    Consulting DBA / Developer
    South Africa

  • RE: How to transfar Oracle data to SQL Server

    Of course, before you can do any of that, you need to install the Oracle Client software (The network portion) and using the Net Configuration Assistant, add a local net...

    5ilverFox
    Consulting DBA / Developer
    South Africa

Viewing 15 posts - 106 through 120 (of 126 total)