Viewing 14 posts - 61 through 74 (of 74 total)
MS03-031 updates the SQL 2000 Server to version 8.00.0818.
Tim S
June 20, 2005 at 12:51 pm
Here's what I started using last week on some table doc I am doing in excel
SELECT
TABLE_NAME, COLUMN_NAME,
COALESCE(DOMAIN_NAME, (DATA_TYPE + COALESCE('(' + NULLIF(CAST(CHARACTER_MAXIMUM_LENGTH AS VARCHAR(4)),...
June 13, 2005 at 3:09 pm
I would try re-istalling the SP for SQL Server not the MSDE; it fixes about half these types of problems for me. I would guess that the MSDE changed an...
June 10, 2005 at 2:19 pm
It does not update the MDAC on XP & 2003 machines. I would guess the MDAC is in use so it had to re-boot to replace some files.
Tim S
June 9, 2005 at 9:05 am
select * from t1
where exists (select * from t2 where t1.c1 = t2.c1 and t1.c2 = t2.c2)
Tim S
May 30, 2005 at 12:27 pm
The Windows 2000 server is on SP 3 for SQL 2000 and it is Service Pack 4 on the windows OS. So if you want it to be SQL SP4...
May 24, 2005 at 11:31 am
Does it have the correct version number of 8.00.2039.
Most people confuse the OS version number as being the SP version.
Tim S
May 24, 2005 at 10:30 am
"Windows 2003 Server requires SQL 2000 SP3"
MS ONLY supports SQL 2000 SP3 or higher on Windows 2003 Server.
No idea of the best way to upgrade, but I would upgrade to...
May 18, 2005 at 12:14 pm
In addition, Support is being dropped for some of the OLD protocals in SQL 2005; the one I am aware of is DB-LIB support.
Tim S
May 2, 2005 at 12:34 pm
I had the problem, but it went away after re-appling SQL 2000 SP4 Beta; I assume I just broke SQL 2005 in some way when I did it.
Tim S
Note: Above...
May 2, 2005 at 12:22 pm
select c.client_no,
Client_Name = decode(c.given_names,null,c.agency_name_surname||decode(c.section,null,'',', '||c.section),ltrim(c.title||' '||c.given_names||' '||c.agency_name_surname))
from clients c
where c.parent_client = 'CLC'
or c.agency_name_surname like ('%COMMUNITY%')
order by c.client_no;
The excel I last used 6 months ago...
March 23, 2005 at 3:10 pm
I would create a view if the number of AttributeId was 16 or less in total.
But, from you post I would guess higher.
If the total number of AttributeId per product...
March 19, 2004 at 9:42 pm
Viewing 14 posts - 61 through 74 (of 74 total)