Viewing 15 posts - 361 through 375 (of 920 total)
Do you have the Sybase bcp also installed on this machine? You may have to use the full path to bcp.exe to make sure you get the right one,...
January 21, 2011 at 2:26 pm
Posting the table definitions, sample data and expected results will help get you a tested answer.
What you're lacking here is the join between the order and the detail table so...
January 19, 2011 at 11:10 am
Please post the code for the insert that's failing. The "-" in the error looks a little odd. Have you confirmed that the user has insert rights on...
January 5, 2011 at 4:22 pm
Has the 'executed as' user's password expired?
January 4, 2011 at 4:21 pm
Be careful with float if you need exact answers. Float is an approximate data type and you need to look at BOL and understand what the implications for that...
December 7, 2010 at 3:40 pm
Your 'in' clause has an opening paren but no closing.
December 6, 2010 at 2:30 pm
If this really is SQL Server 2000, it could be:
November 17, 2010 at 1:24 pm
What is your setting for 'recovery interval'?
November 17, 2010 at 11:25 am
How much memory does it have? If the server and SSMS are fighting for the memory, you may see latency based on the need to swap out the server...
November 16, 2010 at 4:42 pm
Was the error thrown on the database server or on the client receiving the data? Was there an 'order by' on the select?
November 3, 2010 at 2:34 pm
You probably need to get new drivers from the vendor. Sometimes, drivers need to get information from the DBMS catalog about the result sets that are returned. Your...
November 3, 2010 at 2:04 pm
I got this from another post that had one of the same error messages. May or may not apply:
November 2, 2010 at 4:55 pm
'Real' like 'float' is an approximate data type. There are some numbers that can't be exactly represented. If you need fixed precision, you should probably use numeric(s,p) instead...
October 27, 2010 at 10:06 am
what do you get if you run
bcp -v
at the command prompt on the server?
October 25, 2010 at 1:43 pm
Viewing 15 posts - 361 through 375 (of 920 total)