Viewing 15 posts - 3,286 through 3,300 (of 3,638 total)
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...
February 26, 2004 at 4:52 am
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...
February 25, 2004 at 3:51 am
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...
February 24, 2004 at 2:06 am
SQL Injection attacks happen due to a violation of basic programming principles.
As a matter of good programming practice
February 24, 2004 at 1:57 am
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...
February 21, 2004 at 1:30 pm
sp_refreshview recompiles the view which achieves the same thing as running an ALTER statement
February 19, 2004 at 8:53 am
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...
February 19, 2004 at 2:27 am
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...
February 18, 2004 at 1:36 am
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...
February 12, 2004 at 1:58 am
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...
February 12, 2004 at 1:42 am
I know that temporary tables are stored in tempdb but where are tables stored in a "table" data type stored?
February 11, 2004 at 1:29 am
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...
February 10, 2004 at 3:33 am
We use a variety of content management systems and the approach that they take is to cache the results of a query in their own internal cache.
Another approach that we...
February 10, 2004 at 2:05 am
Statistics and military intelligence share a characteristic that they should be used as as a predictive tool or indicator to say what is likely to happen.
They shouldn't be used to...
February 5, 2004 at 5:46 am
Frank,
You know when you are trying to teach your kids to behave properly part of it is getting them to speak properly (and the rest is teaching them when to...
February 5, 2004 at 3:46 am
Viewing 15 posts - 3,286 through 3,300 (of 3,638 total)