Viewing 15 posts - 2,986 through 3,000 (of 3,606 total)
Been there, done that.
In any organisation, be it social, business or what ever there seems to be four types of people.
An organisation...
October 5, 2004 at 2:23 am
I agree that keeping documentation up-to-date is an absolute pain in the arse but when you need it and it isn't there you are in trouble.
I work for a company...
October 5, 2004 at 1:34 am
SELECT TOP 1000 WITH TIES DT.telephoneid , DT.Requests
FROM (
SELECT telephoneid,count(*) AS Requests
FROM tbl
GROUP BY telephoneid
) AS DT.
ORDER BY DT.Requests DESC
This will return the TOP 1000 but also take into account...
October 1, 2004 at 4:58 am
I am very much of the opinion that it is small inch pebble steps that change the world rather than the big bang approach.
If you take a step out of...
September 30, 2004 at 1:50 am
I would plan to convert the queries over time because Access can cause huge locking problems.
Someone on this site recommended using pass thru queries but that means converting your queries...
September 30, 2004 at 1:39 am
Actually, 15 miles probably isn't enough!
On March 29th 2004 in Manchester UK an underground fire in a tunnel containing telecommunication wires took out an area that certainly extends to where...
September 30, 2004 at 1:36 am
This confirms what is written in BOL i.e. each table can only appear once in a cascade relationship and you can't have circular references.
Basically, you have to design your database...
September 29, 2004 at 8:37 am
Don't use SELECT INTO. It is an expensive way to do it.
DECLARE your table variable or create your temporary table then use INSERT ... SELECT
I would also split out your...
September 29, 2004 at 5:54 am
Was that underground fire the one in the British Telecom exchange in Manchester?
September 29, 2004 at 2:18 am
I am not aware of any issues with it other than the obvious mechanics i.e. you accidentally delete the wrong parent record and lose reams of irreplaceable data.
I know that...
September 29, 2004 at 2:17 am
In SQL2000 when declaring referential integrity there is an option to "Cascade Delete" related records.
If this option is set then deleting a parent will cascade delete the children with no...
September 28, 2004 at 2:27 am
Don't forget that it isn't just action queries that need to be converted to procs. Select queries that accept parameters will also need conversion.
I seem to remember a package called...
September 28, 2004 at 2:19 am
We use a standard DES algorithmn that is wrapped up in a DLL.
You can download one off the net.
The DLL looks at a registry key value to get the seed...
September 28, 2004 at 2:14 am
The way that we did it was
September 28, 2004 at 2:09 am
I would go further and say that "wrong" tends to be a matter of opinion rather than hard fact.
September 28, 2004 at 2:00 am
Viewing 15 posts - 2,986 through 3,000 (of 3,606 total)