Forum Replies Created

Viewing 15 posts - 76 through 90 (of 257 total)

  • RE: Index Creation Guidelines

    Question,

    In SQL Server 2005, is it still necessary to create indexes for Foreign Keys? I was under the impression in SQL 2000 and previous that a Foreign Key is...

  • RE: SSIS - Package Error Counter

    Enable logging on the Package (preferrably to a sql database). All documentation points to reading the "sysdtslog90" table in the "msdb" database. However, I am not sure because...

  • RE: Creating SSIS Package Event Handlers

    Either

    1.) just use the old names ex. SysObject, SysColumns, etc

    or

    2.)

    If Object_ID('sys.objects') Is Not Null

    EXEC('select * From sys.objects')

    Else

    EXEC('select * From sysobjects')

  • RE: Sales Order Workshop Part IV

    Heh, you got me, that would be easier...

  • RE: SSIS Scripts

    This is not supported but you could write a Custom Component which can run your Script files. There are plenty of articles for "Compiling" .NET Code on the fly...

  • RE: How to pass XML or bulk data to stored Procedure

    I agree with Ninja. I use the "Split" function when I can like say passing in a list of IDs I want retrieved from the database. However, I...

  • RE: How to pass XML or bulk data to stored Procedure

    You could use the afore mentioned method of parsing using a comma-delimited string. However, using OPENXML is better in this case because you can use it to mass insert...

  • RE: Could use a little direction...

    Clifton has a valid point. I too have worked with EDI for over 8 years. EDI (usually ANSI x12) was developed for making transmissions across the "wire" smaller...

  • RE: Help! Sql Xml XQuery Question

    Ok, I solved my own problem. Since you will not find a solution anywhere on the internet, here it is. It only took 9 hours of searching the...

  • RE: Could use a little direction...

    Scott, do a search on the articles "Sales Order Workshop". It will give you some good examples in SQL 2005 on how to mass insert data from your Xml...

  • RE: SQL Server Security Part 2

    I have a question (and please excuse me if it's been asked before). If I am using SSL between a WebClient and WebServer, is it possible to intercept the...

  • RE: Detecting a file to run a SQL job

    I saw somewhere that there is a "File Watcher" SSIS Component. This would help. However, you could also have the Sql Job just kick off an EXE that...

  • RE: selecting an identity

    You can't. Google "SSIS Surrogate Keys". You can do something similar by first retrieving the MAX(ID) from the Database Table. Store the MaxID in a variable.

    Next, have...

  • RE: Saved package gets corrupted

    I am having the same issue with a custom component.

  • RE: SSIS Is Not Just for SQL Server

    Jim, all "code" is done in VB.NET. The object "Dts" is created for you by the code designer and is used in Script Tasks ONLY! Do not use...

Viewing 15 posts - 76 through 90 (of 257 total)