Data problems after upgrade to MX7

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

  1. #1

    Default Data problems after upgrade to MX7

    A few very frustrating problems have cropped up while upgrading to MX7.
    Thankfully, this is our development server, not our production server, but I
    have been stymied at finding the solution. I've been through siz upgrades over
    the years, starting with Ver 3, and have never had these sorts of problems
    previously. Basic specs: Win2k server with IIS, MS-SQL database, all service
    packs up to date (including CF), fairly straighforward code base, nothing
    fancy. After upgrade, several problems appear. We can downgrade back to the
    previous version and all works again as it should, with the same data sources
    and code base. I'm at wit's end trying to make this work, and I've run out of
    ideas. I'm hoping this is some dumb setting I've overlooked, or a difference
    between Ver6-MX and Ver7-MX. I've searched the knowldege base, read the
    upgrade notes, prowled the forums, but no luck.

    Problem number one: CLIENT variable database storage no longer works. CDATA
    and CGLOBAL tables exist, are established as storage sources, and have been
    functioning properly under Ver6. Error is returned as ' Invalid object name
    'CDATA'. However, it IS there, and works under Ver6 using the same ODBC data
    source, same user name, etc. Setting CLIENT storage to 'Registry' allows the
    site to function again.

    Problem number two: Missing data from queries. Properly functioning queries
    return with data missing from a few fields, in a seemingly random fashion.
    The variables holding the data are present in the returned query, but there is
    no data present. The associated additional fields for that particular record
    are intact. Again, this functions properly under Ver6. These are very simple
    queries with extremely small record sets, on the order of:

    <cfquery name="Query_MOTD" datasource="#application.dsn#">
    SELECT * FROM MOTD
    order by priority desc, ID desc
    </cfquery>
    This might return a half-dozen records.

    So, am I missing something basic? Something fundamentally different between
    version? Any help would be appreciated, I'm out of ideas.




    jbowersce Guest

  2. Similar Questions and Discussions

    1. Coldfusion upgrade 5>7 problems
      Installed coldfusion mx 7 on a coldfusion 5 server - the install went well - n o errors. However the ColdFusion Search Server Service will not...
    2. DB Problems after upgrade
      My company recently upgraded from a WIN2K/CF6 environment to a WIN2003 Server/CF7 environment with all the latest patches etc. We moved all the...
    3. upgrade to MX 6.1 and MS SQL 7 problems
      :confused; The cold was working fine in version 4.5. But after we upgraded from from version 4.5 to MX 6.1. CFINSERT is acting funny. Some of the...
    4. Problems after upgrade to Mac OS 10.2.8
      I'm using Director 8 on a Powerbook G3 500Mhz Pismo and have recently upgraded to Mac OSX 10.2.8. I use Director as a "souped up" PowerPoint to...
    5. Problems with xp upgrade
      When you did the upgrade, did you install OVER your previous OS or did you completely format and then install the upgrade?
  3. #2

    Default Re: Data problems after upgrade to MX7

    - Not sure about the CDATA problem. It certainly should find the table
    itself. Check the ODBC datasource again and make sure it points to the right
    place. Re-submit the ColdFusion datasource. Migration should have made ODBC
    -> JDBC. I'm curious as to why you use ODBC.

    - Missing data.
    I'd like an example of this (template and SQL to create the tables and the
    data to see this.). Does this table have variant datatypes? Is this still
    using ODBC?

    Stephen Dupre
    Macromedia QA

    sdupre 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