Forum Replies Created

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

  • RE: Need 2nd row of excel

    Watch out setting the row number to a large number as dts will process theses rows.

    IE - Will take longer and fill your database up with empty rows.

    May also cause...

  • RE: Need 2nd row of excel

    If you know the data in a column that identifies the row as a header, then you can use skip row.

    However, you have to sepcify all DTSSource and DTSDestination details...

  • RE: MMC.EXE Entry point not found ....Enterprise Manager failing on XP client

    It is true that the dts components for 2005 does in fact cause the screw up.

    However, you can get over this by installing sql server 2000 service pack 4. Worked...

  • RE: dts and java

    In what respect?

    Do you want to be able to execute dts or create a dts package from scratch etc....

  • RE: ActiveX "Can''''t Create Object"

    In order to create the excel object on the server, excel needs to be installed on there.

    This may be the reason you can run locally, but not on the server.

    If...

  • RE: Any good DTS books

    For a good webiste with some real-life examoples to follow:

    http://www.sqldts.com/

    Also contains some known fixes for dts anomoloies - eg null values when importing excel as excel looks at...

  • RE: Passing date parameter to Execute Process Task (batch file)

    Don't use an 'Execute Process Task' in this instance. If you are going to be supplying some parameters then use a sql task instead.

    exec master.dbo.xp_cmdshell 'YOURBATCHFILENAMEANDPATH' @YOURDATEVARIABLE

    That's all there is...

  • RE: DTS to get latest XLS in folder

    This will do it. Just needs tweaking with your directory and file name. This example for a sql dump file:

    ---- Determine lastest file

    declare @FileName varchar(100)

    create table #dbdmp ( FileName...

  • RE: ActiveX and excel

    In your activex script try using -

    excelapp.displayalerts = false

  • RE: DTS Wizard giving error

    Can't think of anything else that would stop it running. A new install may be the best option.

    Also check to see what account the services are running under, especailly the...

  • RE: DTS with end file in Excell

    Sometimes you will find that dts remembers the last time that it ran and uses that row as the startting point even though it has cleared out the spreadsheet. This...

  • RE: DTS with end file in Excell

    You are in luck, in that dts treats excel as it would a table (well, very nearly).

    Before you start the transformation, add a sql task with the following code.

    DROP TABLE...

  • RE: DTS Wizard giving error

    Check under 'Support services' node in enterprise manager and make sure that the distributed transaction co-ordinator is running.

    Barring that, you may be looking at a re-installation.

  • RE: Financial Data warehouse design - which one is better - Snowflake or star

    Start by looing at the number of the dimensions being used and the number of members within them. It could be that you are using a dimension that contains thousands...

  • RE: Message Queue - From application to SQL Server

    First off let me state that I don't think dts is the best tool for the job.

    But....if you want to persevere, then this link and associated link may help...

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