Viewing 15 posts - 2,386 through 2,400 (of 3,668 total)
My mum used to do an annual collection of charity boxes for the NSPCC and had to tot up and log the amounts by hand.
I wrote a program on the...
April 28, 2006 at 2:09 am
SQL Server does not have a separate time field.
SMALLDATETIME contains dates and times accurate to the minute
DATETIME contains dates and times accurate to 3 milliseconds.
If you want to change the...
April 27, 2006 at 1:44 pm
Some life's observations from an old fart
April 27, 2006 at 1:37 pm
After a stiff expresso I sorted it.
Table structure was loosely
Ages were produced by a table function returning a single column of ages.
What I wanted was to bring back all products...
April 27, 2006 at 1:25 pm
If you have 6 instances spread across 2 nodes (making 6 virtual and 12 real) then you need to apply the service pack to your 6 instances.
SP4 is cluster aware...
April 26, 2006 at 12:33 pm
My experience of training has been varied.
The best one was when the official trainer had called in sick and a emergency contractor had to be called in. He taught...
April 26, 2006 at 2:06 am
A person who does a good job makes it look easy. If it looks easy then it looks as if anyone could do it.
April 26, 2006 at 1:51 am
Do you have AWE enabled?
If so then you need to install the 2040 hot fix as well as SP4 (build 2039).
Each instance needs a separate install of the service pack.
SP4...
April 25, 2006 at 7:01 am
I have a friend who was slightly worried about where we left our cars when we went to a rock concert.
You don't have your works lap top in the boot...
April 24, 2006 at 1:03 pm
As far as I can tell the advantages of XML are:
April 24, 2006 at 12:57 pm
I don't believe that it is possible directly.
I have used an INSTEAD OF trigger on a view to achieve something similar but to be honest the simplest way is with...
April 22, 2006 at 8:39 am
So Job has a dependency on the Person existing before it can be entered?
Wrap it up in a transaction and have separate INSERT statements.
April 22, 2006 at 8:31 am
Well do the tables have the same structure, or does the retrieved information have the same structure?
Can you make your SELECT statements so that they do return same structured recordsets?
You...
April 22, 2006 at 8:28 am
I would be tempted to have a category table with:
This means that your category table becomes an extensible tree so when when a marketing type decides they want sub-sub-sub-sub categories...
April 22, 2006 at 8:23 am
It has been a while since I did old fashioned ASP but there was a NextRecordSet method on a RecordSet object.
FirstRs.Open "YourProc"
Set SecondRs = FirstRs.NextRecordset
April 22, 2006 at 8:16 am
Viewing 15 posts - 2,386 through 2,400 (of 3,668 total)