Forum Replies Created

Viewing 15 posts - 3,286 through 3,300 (of 3,641 total)

  • RE: .NET and sloppy coding

    The CMS I am using uses JavaScript and has a gc(); command to invoke the garbage collector.

    I haven't got that far into VB.NET yet but I'm sure that there will...

  • RE: .NET and sloppy coding

    A good tool makes a hell of a difference to the productivity.

    I don't like the way Interdev and Frontpage bloat the code, and yes, I too used notepad for web...

  • RE: DBAs still know whats best for their DB, right?

    I seem to remember an article somewhere on this site that said that SA use, not just access, should be avoided where possible.

    If I was in the situation where I...

  • RE: .NET and sloppy coding

    3 steps forward 2 steps back then

    One thing I am not clear on with garbage collection (whether in Java, .NET etc) is when is...

  • RE: Worst Practices - Making Databases Case Sensitive (Or Anything Else)

    I like Kalen Delaney's idea to use case sensitivity in a development environment.

    I inherrited a database that isn't particularly well normalised and is case sensitive.

    The problem comes at the user...

  • RE: Worst Practice - Triggering External Events

    If I have a database dependent external process then I usually use a trigger to insert records into a logging table or tables.

    For example, a new page gets published in a CMS...

  • RE: SQL Injection - Part 1

    SQL Injection attacks happen due to a violation of basic programming principles.

    As a matter of good programming practice

    • ALWAYS validate user input.
    • ALWAYS check that data cannot exceed its bounds  i.e. the...
  • RE: Help us Improve our Logo

    I have to say that they are all better than anything that I could have managed.  If I had to choose from the six on offer then it would either...

  • RE: Worst Practice - Adding a Column Without Thinking!

    sp_refreshview recompiles the view which achieves the same thing as running an ALTER statement

  • RE: Worst Practice - Adding a Column Without Thinking!

    How about checking to see if the new column is actually needed?

    Look at the design of what is there already and ask if it can encompass the need without the...

  • RE: Temp Tables in SQL Server

    SELECT INTO is slow, horrendously slow on retrieving large recordsets.

    Creating the table first, then doing and INSERT INTO is much faster, plus you have greater control over the table structure.

    I...

  • RE: An Introduction to Database Models

    Interesting!

    I thought that hierachal databases were making a come back for very large databases because of their performance advantages.

    Are XML databases hierachal?

    Do you know if there are there any OO...

  • RE: Temp Tables in SQL Server

    When you create a temporary table its name is always unique.

    You think you have created #Tbl_MyTable and to all intensive purposes you have, but the real name will be #Tbl_MyTable_____...._DE...

  • RE: Temp Tables in SQL Server

    I know that temporary tables are stored in tempdb but where are tables stored in a "table" data type stored?

  • RE: Optimize Your Applications

    In the case of some of one of our CMS's there is always some database traffic but the initial traffic is to determine if the object in the database is...

Viewing 15 posts - 3,286 through 3,300 (of 3,641 total)