Forum Replies Created

Viewing 15 posts - 16 through 30 (of 38 total)

  • RE: Finding last execution date of DTS Package

    You have 2 options :

    1. Change the dts package properties to enable logging to SQL SERVER. When the package is executed, an entry will be added to the table : msdb.dbo.sysdtspackagelog...

    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: Set values in DTS Global variables.

    I think what you need is a Dynamic Property Task. When this task is executed it will assign values to your global variable at run time.

    What you need to do...


    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: Query Optimization

    This version uses the SQL92 "outer join" construct. It still resolves to the same thing as whar Remy wrote. 

    INSERT dbo.Contacts(compID, first, last, phone, email)

    SELECT ic.compID, ic.fname, ic.lname, ic.phone, ic.email

    FROM


    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: Need Help Writing a CASE Statement???

    No, that will not do. You cannot assign the output value to the column in the CASE statement.

    the statement : select ISNULL(COL014, 7.45) AS COL014 would work fine. Prefer...


    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: Cant login after installing MSDE

    MSDE installs itself by default to use Windows Integrated Security only.

    If you need to access MSDE using Mixed Security Mode you have to change Registry Setting :

    HKLM/Software/Microsoft/MSSQLServer/MSSQLServer/LoginMode

    From value 1 to...


    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: Cross-Tab Report Strategies.

    Yes, you can use EXCEL and its Pivot Table with data coming

    from external data sources as long as you can read from these source using OLEDB.

    1. Open a new...


    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: SQL DBA ROLE AND DUTIES

    Check this link :

    http://qa.sqlservercentral.com/columnists/jyao/howtobeagooddbastrategyandtactics.asp

    HABIB


    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: #Deleted in Access query

    It also happens if someting changes in the structure of the table on SQL SERVER, and you do not refresh the table link in ACCESS.

    HABIB.

     


    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: excel export import

    Or use BCP to export the result to a comma separated flat file. Excel will have no problem reading the CSV file directly.

    HABIB.

     


    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: How to pass an array of integers as sql parameter

    A good design pattern would be to transfer the selected items between the web page and the web server as XML data. Then you can design the stored procedure with a single...


    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: DTS package script

    1. Use a dynamic variable task to set up connection parameters at run-time for the destination.

    2. Save the package as a structured storage file

    3. To help you generate the command...


    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: Problem with Dates

    I found that date formatting is probelmatic with international systems (i.e; French = dd/mm/yyyy).

    The best way to pass dates to sql server in any locale is to use a...


    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: my ISP won''''t open port 1433

    There is a tool by Microsoft called SQLWEBADMIN. Look for it in the downloads section de http://www.microsoft.com/sql

    You have to install it on the server and allows you to ru...


    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: Change Collation using DTS

    Changing collations using ALTER DATABASE requires that the database be in single user mode. So it is best to do it one time independently of the DTS.

    One things to remember...


    Kindest Regards,

    Habib Zmerli (MVP)

  • RE: SQL Server - database size and insertion rate

    Christo has summed it up.

    You can comfortably handle that number of records and the high rate.

    But to make things even more comfy, ovoid clustered indexes except for a timestamp...


    Kindest Regards,

    Habib Zmerli (MVP)

Viewing 15 posts - 16 through 30 (of 38 total)