Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)

  • RE: Transferring data between two servers

    If you are restoring the reporting database from live server just to get the data, and you do not need all whole live database for reporting. Then try to create...

  • RE: Dedicated DTS Server - Opinions?

    Mike,

    Are you interested in upgrading your environment or you want the answer for the current environment? Even in current environment you run many of the DTS's every 15-20 minutes. I...

  • RE: DTS Package and Access

    You have to write everything in DTS ActiveX script, you can not use Designer tools. Inside the ActiveX script you can change all the properties dynamically. Let me know if...

  • RE: DTS Package and Access

    If you have some fix pattern for your table name like.

    "fixString" & month & year

    then you don't have to change the source table name in DTS package,whenever you change...

  • RE: Dedicated DTS Server - Opinions?

    It all depends on at what time of the day your DTS scripts are scheduled to run. If there is no traffic on server when you run your DTS then...

  • RE: DTS and Nulls - Active X

    ActiveX script in DTS does not use the T-SQL language, it uses VBScript or Javascript. So for using isNull in VBscript try following:

    If isNull(DTSSource("myCol")) Then

        DTSDestination("myCol") = "Your custom value"

    Else

      ...

  • RE: Null

    You can use COALESCE function also..

    Select COALESCE(fieldName, 1) from myTable

    - Kamlesh

Viewing 7 posts - 1 through 7 (of 7 total)