Forum Replies Created

Viewing 15 posts - 436 through 450 (of 805 total)

  • RE: Connection Problem...!!!

    is your package saving the password? By Default it does not. You need to check the ProtectionLevel property of the package. Sensitive data, such as passwords, do not get saved.

    Can...

  • RE: Help with query\join

    You could join using a between clause.

    Select

    xxx

    From

    GL_Entry ENT

    JOIN GL_Register REG ON REG.Entry_NO Between ENT.From_Entry_NO and ENT.From_Entry_NO

    where

    ENT.CreationDate = @CreationDate

    Should work...

  • RE: Storing Files Created Date

    You'll have to use a script task and get the file attributes in there. Once got, you can assign them to a SSIS variable.

    See google for getting file attributes in...

  • RE: Connection Problem...!!!

    What type of connection are you using? Does the account Agent is running under have rights to SQL?

    There should also be more to the error which is slightly more descriptive.

  • RE: SSIS Programming

    Can't help on the dll issue. is that dll on the server?

    The first, see error output for destination and redirect error rows. See BOL for more info.

  • RE: Aggregating Many To Many

    So if I understand you correctly, you have multiple facts which are actually the same barring a few columns which separate them?

    if so, would using a multi cast, get distinct...

  • RE: VB.NET Error

    The variable handling is shaky when using variables like that. Your best bet is to LockOneForRead and assign it to an internal variable, unlock it, and use it like that.

    Also,...

  • RE: Genral SSIS question

    For the love of god people, we are not magical people who can see mystical things. If you were so kind as to letting us know what the actual error...

  • RE: SSIS max files in for loop container

    As a side note, there is a memory leak bug with the loop container. This might have been fixed with sp2 - I'm not sure.

    if you want to limit your...

  • RE: XML is a blob

    I have not used XML in earnest but yes, I cannot see it as being the most performant thing out. Not in any way comparable to relational tables.

    The main reason...

  • RE: "Microsoft.Jet.OLEDB.4.0" has not been registered on 64-bit server

    As you said, there is no 64bit version of Jet.

    A way to do it would be to use SSIS, under 32bit emulation, to import the info.

    I don't know of a...

  • RE: Hardware & RAID Configuration - What''''s the best

    If you on a budget, RAID 5 is the best option for SQL.

    The issue with 5 is the overhead of the parity bit being written.

    Ideally, you should have a...

  • RE: Loading data from SQL Server 2005 to Oracle 8i through SSIS

    I have not used SSIS to push data to Oricle but pretty much sucks what you getting here. I cannot see or think of anything that is wrong.

    Having a scratch...

  • RE: Loading data from SQL Server 2005 to Oracle 8i through SSIS

    Do you have the problem if you push to a SQL dest? What is the size of your row? Many big fields?

    Some trial and error:

    Create a small DF with 1000...

  • RE: Super DBA

    Did you hear the rumour about Father Christmas? Something about him not being real... Imagine!

Viewing 15 posts - 436 through 450 (of 805 total)