473,399 Members | 3,106 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Problems with insert statement using SSL(Verisign)

mvr
Hi all

I are using IIS 5.0, Oracle 8.1.

I am having problem with the following Insert Statement when used on
Production Web server with SSL(https://...., Verisign).
This doesn't occur everytime. Our studies shows that it is occurring
approximately between1-2% of the total applications/Year(70-80K).
After adding some debugging, the insert statement, after failing, is giving
the following error:
Error NUmber: #-2147217833
Error Desc[Microsoft][ODBC driver for Oracle][Oracle]ORA-01401: inserted
value too large for column

Ironically, 75% of the time, when the users resubmit the page the record
will be inserted.

Insert into TABLE_NAME (APPLICANT_ID, ACAD_YR, SSN, FIRST_NAME, LAST_NAME,
MIDDLE_INITIAL, DATE_OF_BIRTH, STREET_ADDRESS, APARTMENT, CITY, STATE_CODE,
COUNTY_CODE, ZIP_CODE, EMAIL_ADDRESS, HOME_PHONE_NUMBER, OFF_PHONE_NUMBER,
FAX_PHONE_NUMBER, APPLICATION_RECD_DATE, MAIL_MEDIUM_IND, APP_TYPE_CODE,
GENDER_CODE, TITLE_FLAG, OWE_REPAY_FLAG)
Values (99057577,2005,'P00009775','TEST','BETA',Null,'02-FEB-1975','1940
BRENTWOOD',Null,'CITY','FL','37',12345,Null,Null,N ull,Null,'14-FEB-2005','S'
,'P','F','N','N')

I am thinking the problem is while the data is being transferred through
SSL(during the process of encryption and/or decryption it is inserting some
kind of junk characters?????)

While generating the sql I took every step to trim unwanted characters,
empty spaces but we are still getting the error.

Any suggestions will be really appreciated.

Thanks in advance
mvr

Jul 22 '05 #1
2 1882
http://www.aspfaq.com/etiquette.asp?id=5003

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"mvr" <v_*****@hotmail.com> wrote in message
news:uN****************@TK2MSFTNGP15.phx.gbl...
Hi all

I are using IIS 5.0, Oracle 8.1.

I am having problem with the following Insert Statement when used on
Production Web server with SSL(https://...., Verisign).
This doesn't occur everytime. Our studies shows that it is occurring
approximately between1-2% of the total applications/Year(70-80K).
After adding some debugging, the insert statement, after failing, is giving the following error:
Error NUmber: #-2147217833
Error Desc[Microsoft][ODBC driver for Oracle][Oracle]ORA-01401: inserted
value too large for column

Ironically, 75% of the time, when the users resubmit the page the record
will be inserted.

Insert into TABLE_NAME (APPLICANT_ID, ACAD_YR, SSN, FIRST_NAME, LAST_NAME,
MIDDLE_INITIAL, DATE_OF_BIRTH, STREET_ADDRESS, APARTMENT, CITY, STATE_CODE, COUNTY_CODE, ZIP_CODE, EMAIL_ADDRESS, HOME_PHONE_NUMBER, OFF_PHONE_NUMBER,
FAX_PHONE_NUMBER, APPLICATION_RECD_DATE, MAIL_MEDIUM_IND, APP_TYPE_CODE,
GENDER_CODE, TITLE_FLAG, OWE_REPAY_FLAG)
Values (99057577,2005,'P00009775','TEST','BETA',Null,'02-FEB-1975','1940
BRENTWOOD',Null,'CITY','FL','37',12345,Null,Null,N ull,Null,'14-FEB-2005','S' ,'P','F','N','N')

I am thinking the problem is while the data is being transferred through
SSL(during the process of encryption and/or decryption it is inserting some kind of junk characters?????)

While generating the sql I took every step to trim unwanted characters,
empty spaces but we are still getting the error.

Any suggestions will be really appreciated.

Thanks in advance
mvr

Jul 22 '05 #2
mvr
Hi all

After the suggest from on of the member(Thanks!!), I started writing SQL in
a text file.
The out come is:

One of my drop down box is having a default value as null but it displays
text as "SELECT NAME"
The code goes as follows
<select name = "selName">
<option value="" selected> SELECT NAME

My Request.Form("selName") is returning "SELECT NAME" instead of Null value.

This doesnot happen often, on resubmitting (the second submit) it retruns
Null.

Does any one ran into this situation.

Any suggestions and help will be really appreciated.

Thanks
Venkat
"mvr" <v_*****@hotmail.com> wrote in message
news:uN**************@TK2MSFTNGP15.phx.gbl...
Hi all

I are using IIS 5.0, Oracle 8.1.

I am having problem with the following Insert Statement when used on
Production Web server with SSL(https://...., Verisign).
This doesn't occur everytime. Our studies shows that it is occurring
approximately between1-2% of the total applications/Year(70-80K).
After adding some debugging, the insert statement, after failing, is giving the following error:
Error NUmber: #-2147217833
Error Desc[Microsoft][ODBC driver for Oracle][Oracle]ORA-01401: inserted
value too large for column

Ironically, 75% of the time, when the users resubmit the page the record
will be inserted.

Insert into TABLE_NAME (APPLICANT_ID, ACAD_YR, SSN, FIRST_NAME, LAST_NAME,
MIDDLE_INITIAL, DATE_OF_BIRTH, STREET_ADDRESS, APARTMENT, CITY, STATE_CODE, COUNTY_CODE, ZIP_CODE, EMAIL_ADDRESS, HOME_PHONE_NUMBER, OFF_PHONE_NUMBER,
FAX_PHONE_NUMBER, APPLICATION_RECD_DATE, MAIL_MEDIUM_IND, APP_TYPE_CODE,
GENDER_CODE, TITLE_FLAG, OWE_REPAY_FLAG)
Values (99057577,2005,'P00009775','TEST','BETA',Null,'02-FEB-1975','1940
BRENTWOOD',Null,'CITY','FL','37',12345,Null,Null,N ull,Null,'14-FEB-2005','S' ,'P','F','N','N')

I am thinking the problem is while the data is being transferred through
SSL(during the process of encryption and/or decryption it is inserting some kind of junk characters?????)

While generating the sql I took every step to trim unwanted characters,
empty spaces but we are still getting the error.

Any suggestions will be really appreciated.

Thanks in advance
mvr

Jul 22 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Adam Nims | last post by:
I am planning out an e-commerce site, which I will most likely create in PHP. I am going to use VeriSign to process the credit cards. How would I use VeriSign in a PHP script? I've found some...
1
by: Ashutosh Bhalerao | last post by:
Hi all, I am trying to write a VB.Net application which communicates over SSL with an IIS server. I have got a temporary certificate from Verisign and installed it on IIS. I am using...
0
by: mvr | last post by:
Hi all After the suggestion from one of the member(Thanks!!), I started writing SQL in a text file. The out come is: One of my drop down box is having a default value as null but it...
7
by: Guangxi Wu | last post by:
Hi all, Happy New Year. I am using SignedXML and an X509 certificate to digitally sign a SOAP message body and put the signature in the SOAP header for a B2B business application. Can you...
2
by: Freddy | last post by:
Hi, I have developed a website in VB.NET and installed a verisign test ssl certificate on the website using iis. When I try to access any .aspx page using https I am getting a page cannot be...
0
by: dinoo | last post by:
Can some body help me out? I am trying to use client certificates in a Webservice. But some how i am not able to make it. I went through the msdn resources but i think some one needs to help me...
2
by: Chuck | last post by:
I am using an asp.net page and I am trying to setup a customers website. The website uses a ssl certificate from verisign and the customer would like to use the seal. The new style from VeriSign is...
11
by: John Nagle | last post by:
The Python SSL object offers two methods from obtaining the info from an SSL certificate, "server()" and "issuer()". The actual values in the certificate are a series of name/value pairs in ASN.1...
0
by: SSLGuru | last post by:
Hello Everyone, We are currently running special offer for WHT Forum Members. All VeriSign Certificates are priced at Special rates during our September Sale Offer. Please visit below link...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.