Forum Replies Created

Viewing 15 posts - 181 through 195 (of 296 total)

  • RE: Do You Need an IT or CS Degree to be a Successful DBA?

    I have an accounting degree and passed the CPA exam. Worked as an accountant who knew computers, and discovered that relational database concepts were obvious. I've switched between accounting and...

  • RE: Normalize or not?

    We generally use DTS to place the raw data in a SQL table, then use a stored procedure to covnert the flat file data into relational data. The original feed...

  • RE: Introduction to Profiler

    Profiler is probably the most valuable tool I use for troubleshooting, especially with vendor provided applications. With Profiler, I can frequenetly determine the cause of an nissue and the fix...

  • RE: Creating Stored Procedure in SQL server 2000 for Printing Prime Numbers

    And, to make it a bit faster, let's skip all of the even numbers after 2 (I suspect I've chosen a less than desirable way to do that)

    DECLARE

    @i INT,

    @a INT,

    @count...

  • RE: The March 2009 Car Update

    One reason Americans drive bigger vehicles is the perception that they are safer, and will protect Mom and the soccer playing little ones better. I know a lot of folks...

  • RE: Matching employee application log ins to log outs

    If you have issues with employees logging in simultaneously on multiple machines, you may want to add another field to the login tracking table to track machine name using the...

  • RE: Automatically change LOWER to UPPER

    RBarryYoung (3/29/2009)


    If you had enforced stored procedures for table access, then you could do it there.

    That's a good point, and is pretty much our philosphy for a variety of reasons...

  • RE: Automatically change LOWER to UPPER

    Change the insert statement to something like INSERT table UPPER(string). we do this in many of the apps we support.

  • RE: CEO

    Jeff has summed up the main role of a CEO in one word. I've seen CEO's that were great leaders, and I've seen CEO's that were mediocre leaders, but managed...

  • RE: DB language

    FORTRAN? I would have thought something like MUMPS would have been more appropriate. Or maybe FORTH (that would be a challenging development process).

  • RE: A theoretical flat file database, how could it work well?

    I think the old data files used with BASIC could be considered flat files. They didn't really have anything in them except data, the definitions were in the programs that...

  • RE: Huge Bitmap

    Without knowing the structure of your bitmaps, but assuming there is a product ID or something similar for each row, can you change the table to have a row for...

  • RE: decrypting table contents

    A developer who encrypts data, uses passwords to hide code, etc. will never get another engagement from me. That's just evil.

    Jeff is correct, as usual, the duties of the contractor...

  • RE: SP naming convention policy

    What happens whe you have the same application running several instances in different databases, which is how all of the apps I support work (same database structure many times, one...

  • RE: Group By clause

    I have colleagues who use GROUP BY clauses without aggregation in place of a SELECT DISTINCT. The results appear to be the same. I've always used a DISTINCT if I...

Viewing 15 posts - 181 through 195 (of 296 total)