Viewing 15 posts - 2,776 through 2,790 (of 3,607 total)
Firstly, I would replace the DELETE FROM statements with TRUNCTATE TABLE statements. These are faster and won't generate the same amount of log file activity.
Secondly, replace your SELECT INTO...
March 31, 2005 at 5:20 am
My issue is that CLR (MFC with a fancy badge on it) allows programmers immense powers within my databases but I am not convinced that there is the corresponding corporate...
March 30, 2005 at 12:38 am
CREATE TRIGGER tr_FromTrainersTable ON FromTrainersTable FOR UPDATE
AS
IF UPDATE(Day1)
UPDATE FromTrainersTable
SET TimeStamp1 = GETDATE()
FROM FromTrainersTable INNER JOIN inserted ON FromTrainersTable.FTKey = inserted.FTKey
WHERE FromTrainersTable.Day1 ...
March 30, 2005 at 12:21 am
I could be wrong here but I thought that the cluster services required a domain account and thus SYSTEM would be disabled.
March 29, 2005 at 5:18 am
You can use the COLUMNS_UPDATED() function to determine if a column has been updated however this simply tells you that a SET operation has been carried out against the column,...
March 29, 2005 at 5:17 am
If you are trying to generate a web page from a stored procedure then use sp_makewebtask.
If you are trying to call a web page as you would for a web...
March 29, 2005 at 12:50 am
Like PHP, MySQL seems to have been written by a bunch of people who thought "what is missing from all web creation languages and how can we put all the...
March 24, 2005 at 10:22 am
As we all know the product as Yukon why not stick with that name?
When you brand a product by the year of release even the name has obsolescence. If...
March 23, 2005 at 2:05 am
OK, I worked on a database that had several million transactions per country per week appended to a database. I established a rule early on that said only one...
March 21, 2005 at 4:37 am
My personal preference follows the 80:20 rule. 20% of the data caters for 80% of the needs. Therefore I prefer to have a small amount of live data...
March 21, 2005 at 1:55 am
Has anyone changed the recovery mode of your database to simple?
March 17, 2005 at 9:51 am
Let us suppose that you develop on a case sensitive server and that development includes a substantial amount of data, that is, more than you would want to insert using...
March 17, 2005 at 1:44 am
I have to admit that I still look at an XML document as a posh version of a COBOL data division.
I quite like the ideas behind OOP and when it...
March 15, 2005 at 1:51 am
My wife took one look at a 42" plasma screen and said "it takes up less room than our existing one and will require less dusting".
What a woman!!!!!
It's a shame...
March 11, 2005 at 1:37 am
Will we be able to chip it and use it as a cheap web server
March 11, 2005 at 1:32 am
Viewing 15 posts - 2,776 through 2,790 (of 3,607 total)