Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Data Loss?

    I'm having problem with dropped data between the Coldfusion 6.1 server and the
    DB server.
    Submitting using cfinsert:
    cfinsert datasource="mydatasource" tablename="MYTABLE"
    to insert to an Oracle 10g database. However, there appears to be some data
    loss when inserting into the table. To test things I added a cfdump to the form
    page to make sure the data was making it to the submit form, and it is. The
    form works when submitting from the dev edition on my workstation, but has
    problems when I move it to the production server. I have also had the same
    problem when submitting to an Access DB residing on the Coldfusion server, so I
    don't think it's a connectivity problem or a DB driver problem.
    I've even tried reinstalling Coldfusion.
    Any help would be greatly appreciated.

    BeeDubya Guest

  2. Similar Questions and Discussions

    1. Sporadic loss of FORM scope data
      Up to 10% of my users get errors when submitting forms. FORM scope is totally gone (no FIELDNAMES, no hidden fields, zip, nada) I have done the...
    2. Flash Data Text - Format Loss With IE
      I have a website that is all flash. I have a main file that loads in the nav and then the nav loads in the designated .swf file for each section. So...
    3. Printing Dynamic Form PDF causes data loss
      I have a PDF that I created using Acrobat 4.0 I took an existing Word Document and created a PDF from it. I then went in and added form textboxes...
    4. #26304 [Opn->Asn]: Unexpected data loss when opening dba file
      ID: 26304 Updated by: iliaa@php.net Reported By: vesely at tana dot it -Status: Open +Status: ...
    5. <Critical> Loss of Data after entry in form
      I'm hainvg users after updating the database over the network via a form having their information being loss. They verify when they are currently...
  3. #2

    Default Re: Data Loss?

    What is the nature of the problem?

    page crashes?
    record not inserted?
    some fields inserted, some not?
    Dan Bracuk Guest

  4. #3

    Default Re: Data Loss?

    As a generic word of advice, I would avoid using CFINSERT and CFUPDATE, as
    there have been longstanding problems with these tags over numerous versions of
    CF. Using CFQUERY give you much more control, and fewer headaches.

    Phil

    paross1 Guest

  5. #4

    Default Re: Data Loss?

    The problem is some fields inserted, some not. It's not completely consistant which fields are missed, but usually the FNAME & LNAME fields (VARCHAR2).
    BeeDubya Guest

  6. #5

    Default Re: Data Loss?

    I think this is bug 52972 and was fixed in the 6.1 updater.

    When CFINSERT or CFUPDATE is used with a table with certain column names, some
    FORM fields are not correctly mapped to the table column names. This happens
    intermittently.

    The problem only occurs when one column name is a portion of another, longer
    column name. For example, the three column names: JOB, FIRSTJOB, JOBTYPE

    (OK in 7.0)

    6.1 hotfix here:
    [url]http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18952[/url]

    Stephen Dupre
    Macromedia QA

    sdupre Guest

  7. #6

    Default Re: Data Loss?

    That would make sense. I have columns named LNAME, FNAME, TLNAME, and TFNAME.
    Thanks!
    BeeDubya Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139