Forum Replies Created

Viewing 15 posts - 241 through 255 (of 268 total)

  • RE: SQL Injection - Part 1

    I agree completely. In fact, the intent of of mentioning the code generation in my last post was to debunk the development time argument.

  • RE: SQL Injection - Part 1

    pe johnson said "stored procedures, anyone?"

    In my own defense, I did say "If you need to build and execute ad hoc queries" but maybe I did not stress the need...

  • RE: SQL Injection - Part 1

    Validating user input is really not complex at all. If you need to build and execute ad hoc queries you just need to remember two things.

    With strings, always replace ticks/single-quotes...

  • RE: An Introduction to Database Models

    Where do the alarm messages come from? Would there be a way to dump them to a flat file or something? The .NET framework provides a file/folder listener that can...

  • RE: An Introduction to Database Models

    I thought about the serialization thing a little more and figured out a way to handle the situation where notification needs to be sent when changes are made to the database....

  • RE: An Introduction to Database Models

    Business Rules in the DB

    The only rules that should be in the DB are the ones that are used to enforce data integrity. Triggers are often used to enforce data...

  • RE: An Introduction to Database Models

    Triggers vs. Polling

    This is a trade-off decision.

    Is the trigger load greater than the load would be if you polled every few minutes? If the database is getting hammered then the...

  • RE: An Introduction to Database Models

    I would like to add a little bit of personal opionion on the OODB topic.

    The concept of an Object-Oriented Database just seems wacky  to me. Objects...

  • RE: When Do You Pull Your Hair Out?

    quote:


    I'm sure that after reading about a few of my "In The Real World" adventures, there are more than a couple of...

  • RE: Is XML the Answer?

    It is very nice to see a viewpoint that is different from what all the pundits are touting. This is a very good article but it does miss a couple...

  • RE: Where Do I Want To Go Today? - Rich Data Types

    This is available in SQL 2000 according to BOL (SQL Server Architecture > Database Architecture > Logical Database Components > Full-Text Catalogs and Indexes) but I have never tried it:

    Formatted...

  • RE: Stored Procedure Development Cycle

    This may be a little nit-picky but I recommend building the query in Query Analyzer outside the boundaries of a stored procedure and just using variables for the parameters. It's...

  • RE: What Your SP Can Return

    quote:


    I've got a question on this subject.

    Somewhere along the line (back when I was a mere programmer), I got the...

  • RE: 10 Steps to Securing your SQL Server

    One other thing in reference to "Remove BUILTIN/Administrators". If the SQL Server is clustered, you will need to create a login for the service account that the Cluster Server service...

  • RE: 10 Steps to Securing your SQL Server

    Updated link to the Retina Sapphire utility:

    http://www.eeye.com/html/Research/Tools/register.html?file=RetinaSapphireSQL

    I think they caught on and want to get everyone's personal information now. Linking directly to the exe doesn't appear to work.

    Bryant E. Byrd,...

Viewing 15 posts - 241 through 255 (of 268 total)