Viewing 8 posts - 1,546 through 1,553 (of 1,553 total)
If you're certain that the server is accessible over the network, I'd suggest you investigate the last part of the message - 'access denied'
Make sure you're trying to register...
January 7, 2004 at 4:57 am
I don't have much experience with BULK INSERT (always uses bcp ) and I also stay away from csv files, but...
Try to specify the fieldterminator as "\",\"" (should translate to...
January 7, 2004 at 4:48 am
Could be.
Have you tried with OSQL instead of ISQL?
/Kenneth
January 7, 2004 at 4:27 am
Can you expand on what kind of error you get?
Does the proc AGGT_INRUNNING really accept 'score' as input parameter?
/Kenneth
January 7, 2004 at 4:25 am
Another way to skin the same cat =;o) - ROLLUP instead of UNION
SELECT CONVERT(char(7),Date_Requested,120),
COUNT(*)
FROM Accident_Reg
GROUP BY CONVERT(char(7),Date_Requested,120)
WITH ROLLUP
=;o)
/Kenneth
November 25, 2003 at 4:33 am
Just a question from the curious..
You talk about subnets, but nowhere do I see the netmask? Are you assuming default subnetmasks always?
If not, then you must also pair each...
November 25, 2003 at 1:54 am
Just be aware that isnumeric() has it's flaws, depending on the actual charachters you want to filter, this may or may not have an impact on you...
ie isnumeric() considers TAB,...
May 30, 2003 at 2:16 am
Just be aware that isnumeric() has it's flaws, depending on the actual charachters you want to filter, this may or may not have an impact on you...
ie isnumeric() considers TAB,...
May 30, 2003 at 2:16 am
Viewing 8 posts - 1,546 through 1,553 (of 1,553 total)