Viewing 15 posts - 346 through 360 (of 530 total)
Solved the puzzle, but haven't got a solution yet.
On 28th of January, a post appears on the microsoft.public.sqlserver.dts forum (Subject : "SQL2000 sp3 et al.") featuring some e-mail communication between...
February 5, 2003 at 6:16 am
Been there, done that
Reapplied SP3 for Win2K and SP3 for SQL2K (in that order), but the problem still is not solved.
BTW, the problem persists on the...
February 5, 2003 at 3:22 am
No, some odd 100 fields. It's an export of a table to a delimited text file. The package is created using the wizard. No special stuff, just clicking 'Next...' all...
February 4, 2003 at 8:05 am
If this is a specific problem, only relating to the class id-1 and class id-2, the following query will do the trick.
SELECT cs1.student_id
FROM (SELECT student_id
...
February 3, 2003 at 9:26 am
This should do the trick.
SELECT s.SalesMan, s.Date, l.Limits - s.Total
FROM
(SELECT s1.SalesMan, s1.Date,
(SELECT sum(Amount) FROM...
January 29, 2003 at 2:39 am
I believe it says that your windows 2000 is on SP2. SQL Server does not display it's real SP version.
If you get the 'Microsoft SQL Server 2000 - 8.00.760 (Intel...
January 28, 2003 at 10:17 am
I think the following query solves your problem :
SELECT e.EmpNum, e.EmpName, s.NrSupervise
FROM Employees e
LEFT OUTER JOIN
...
January 27, 2003 at 9:40 am
I've been banging my head against the wall all weekend, but to no avail.
Don't seem to get this one nailed down without using cursors... and even with cursors, it's not...
January 27, 2003 at 12:41 am
See your point. Next time, I'll try to investigate a bit further.
Still on it, but I don't think my employer will like me spending his time on this right now....
January 24, 2003 at 2:46 am
Here's a more complete solution...
--Create a temp table, with an identity
SELECT IDENTITY(int,1,1) as combo_temp,
o1.ordkey,
...
January 23, 2003 at 4:06 pm
Oh boy oh boy. This one's a challenge
The following query returns a recordset with the correct records in it.
select o3.ordkey, count(distinct(o3.ordprod)) as...
January 23, 2003 at 3:53 pm
Again, have to agree with David. 'Used By' comments are usefull, but it's a pain to keep them up to date. And if you can't trust them, what's their use.
In...
January 23, 2003 at 3:24 pm
Also like the comment header. Agree with David.Poole on this. And we agreed to cut out all changes in between major versions / releases.
This keeps the changelog nice and short.
January 23, 2003 at 4:15 am
First of all, I believe this is a client issue (representation of data) and not a database issue. I don't think it is possible to limit the size of a...
January 21, 2003 at 8:46 am
I think the following code should do the trick.
In the second part of the join statement, make sure you select and join by all ID fields.
Then, you join this to...
January 20, 2003 at 9:58 am
Viewing 15 posts - 346 through 360 (of 530 total)