Forum Replies Created

Viewing 15 posts - 46 through 60 (of 64 total)

  • RE: SSIS and oracle

    You probabably will also need a TSNAMES.ORA file on your workstation with the appropriate Oracle connection strings.

  • RE: Job History logging for SSIS pkg jobs

    Have you turned on package logging (Click SSIS...Package Logging in Visual Studio) for that pacakge? I prefer to log to a SQL table rather than a file. You...

  • RE: SQL Server Express DAC

    Wow! And I thought I'd be the first one to complain.

    Default means "default"!

  • RE: Migrate DTS to SSIS

    Take if from someone who's been engaged in doing exactly what you are talking about...re-write your packages in SSIS if you can. You'll get a lot of bang for...

  • RE: Relational Diagrams

    Assuming the tables are already related with foreign keys, you can create a new diagram in SQL Management Studio and simply add all of the tables in the database. ...

  • RE: Relational Diagrams

    Documentation is superfluous. The code is obvious.

    😉

  • RE: Help with extracting Bits out of Binary Number

    I love this topic...you don't get to do bitwise operations all that often.

    I did this with the bitwise AND operator ("&") and a bitmask to find the values of the...

  • RE: Migrating Cubes from Analysis Server 2000 to Analysis Server 2005

    Plan on just redeveloping your cubes in SSAS 2005.  There is not a straightforward migration path.

    Also, if you're using DTS for ETL, plan on redeveloping that in SSIS as well. ...

  • RE: how do you secure SQL against everyone?

    I think this has been a problem in every IT shop since the earth cooled.  If it weren't for the darn coders (and users), our servers would run like tops...

  • RE: Question of the Day for 06 Sep 2007

    Hugo,

    I'm with you.  I also picked "B" although I was dubious of it because of the word "always" in the question but I was unaware of the restriction you described...

  • RE: Double Select MIN()

    So you want the smallest MIN(Col2) where Col1 = MIN(Col1) right?

    Why not

    SELECT Col1, MIN(Col2)

      FROM Table

    WHERE Col1 = (SELECT MIN(Col1) FROM Table)

    GROUP BY Col1

  • RE: Weirdest interview question?

    I especially like the salt-shaker question...I have used "How do you test a toaster?" myself.

    If there are any old mainframers out there...they'll appreciate this one...

    There is an error code on...

  • RE: BEST PRACTICE ON PRIMARY KEYS

    My practice (best or not) is to replace lengthy text keys like the one you describe with a system assigned key...either a four or eight byte integer or a GUID...

  • RE: Uploading Text File with Header and Trailer Records

    That's a great question because that kind of data is so common.  Unfortunately, there's not a built-in transform to handle it (but there should be).  You could code a custom...

  • RE: Query to get late week in the month

    Try this on for size...

    select

    dateadd(d, -1, dateadd(m

Viewing 15 posts - 46 through 60 (of 64 total)