Ask a Question related to ASP Database, Design and Development.
-
Shawn #1
Weird error
I'm getting this error when Trying to insert a field into
a sql server db using a stored procedure.
String or binary data would be truncated.
-- code --
CREATE PROCEDURE insertApplication
@param char(2086)
....
INSERT INTO tblTest
(
[datetime], status, bigfield
)
VALUES
(
getdate(), @status,@param
)
-- end --
When I change the input parameter to 2048 it works fine,
but does not store all the fields.
The length of the field coming in is 2086. Why does it
give me an error when I increase it past 2048, but when it
is 2048 if works find but cuts off my results?
Shawn Guest
-
IE weird sound error
Hi, I've got a weird problem where my dynamic slideshow's music works fine in Netscape and Firefox, but doesn't work at all in Internet Explorer. ... -
CFMX7 -- weird error
I have CFMX7 loaded into both my development and production webserver, both of which are running IIS SP4. I have a call into Macromedia tech... -
Weird CFScript Error
I keep getting the following error in my cfscript. The error message and stack trac reveal nothing about the cause. The error occurred in... -
Weird error when starting PS
Hi, Im getting an error when i run PS. <http://www.lemonfridge.com/images/Image1.jpg> It pops up once after double clicking the icon, and then... -
[PHP] weird php error
Hello, This is a reply to an e-mail that you wrote on Sat, 2 Aug 2003 at 00:10, lines prefixed by '>' were originally written by you. ... -
shawn #2
Reply to self
Duh,
I found it. Sorry for taking up space.
it>-----Original Message-----
>I'm getting this error when Trying to insert a field into
>a sql server db using a stored procedure.
>
>String or binary data would be truncated.
>-- code --
>CREATE PROCEDURE insertApplication
> @param char(2086)
>....
>INSERT INTO tblTest
> (
> [datetime], status, bigfield
> )
> VALUES
> (
> getdate(), @status,@param
> )
>
>-- end --
>
>When I change the input parameter to 2048 it works fine,
>but does not store all the fields.
>
>The length of the field coming in is 2086. Why does it
>give me an error when I increase it past 2048, but when>is 2048 if works find but cuts off my results?
>.
>shawn Guest



Reply With Quote

