Forum Replies Created

Viewing 15 posts - 526 through 540 (of 631 total)

  • RE: Fulltext thesaurus

    It's not in 2005, but I *believe* this is available in 2008

    HTH

    Andrew

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: Alternative To Cursors?

    Jeff Moden (11/14/2010)


    sqldba_icon (11/13/2010)


    sure. where can i find the details?

    Google? Books Online? I'm not trying to be a smart guy here... that's where I'd look.

    Not trying to be...

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: Name of server where package is stored

    There's the System::MachineName variable - I always tend to use this in environments where the environment is less "controlled" and the package may be moved at short notice.

    Well - actually...

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: Fact table design issue- Please advise!

    Pac123 (11/8/2010)


    PaulB-TheOneAndOnly (11/5/2010)


    Pac123 (11/5/2010)


    Thats right..Table B is at a more granular level than table #A. [one record for every week in the date range between start and enddates].

    Here is the...

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: how to check maximum dates in the csv files and insert into the sql tables using ssis

    Jeff Moden (11/2/2010)


    andrew gothard (10/30/2010)


    As a side bar, I never load data directly into the "final" table from an outside source (like a file). It's too risky for a...

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: how to check maximum dates in the csv files and insert into the sql tables using ssis

    As a side bar, I never load data directly into the "final" table from an outside source (like a file). It's too risky for a multitude of reasons. ...

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: Create table in other db

    Build the command in a string and use EXECSql to run it

    DECLARE @sql VARCHAR(1000)

    SET @sql = 'CREATE TABLE ' + '[' + @otherdb' + '].[dbo].[my_new_table]'

    Exec ( @sql)

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: SQL Server Breaks down for every 10mins

    Have you tried starting Task manager on the server and seeing if there's a process eating memory?

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: SSIS ADVICE

    rocky_498 (10/29/2010)


    First of all i really appreciate your reply. I am using SSIS to finish this project, and i am using EXCEL SOURCE file and OLE DB source. i...

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: For Each Loop Container

    Class sig BTW - mind if I use it in interviews? 🙂

    Be my guest. Not entirely sure how you intend that to be of use in an interview, but...

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: For Each Loop Container

    Craig Farrell (10/29/2010)


    andrew gothard (10/29/2010)


    Ah - in that case - what I've done in the past is to have the script object parse the filename - set a value in...

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: SSIS ADVICE

    Not sure what you're getting at mate - do you mean that you want the process to add a datestamp as the records are entered, if so from when te...

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: For Each Loop Container

    Ah - in that case - what I've done in the past is to have the script object parse the filename - set a value in a variable and then...

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: how to check maximum dates in the csv files and insert into the sql tables using ssis

    Personally I'd *probably* use a staging table for that, rather than do it in SSIS, particularly if you can set up an SP in the source which is appropriately indexed...

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

  • RE: For Each Loop Container

    Ok - have two forEach Loops one looking for .csv and one looking for .txt files (it's part of the ForEach loop config). That's it, process accordingly using the...

    I'm a DBA.
    I'm not paid to solve problems. I'm paid to prevent them.

Viewing 15 posts - 526 through 540 (of 631 total)