Jump to content
TrinityCore

"unknown column" "missing table" "duplicate column" error / sql problems / SQLDriverLogFile < answer on 1st post of 1st page


Apple
 Share

Recommended Posts

Hi.

I'm trying to create a server with 4.3.4 branch.

I saw, on this forum and on github repository's pages, that there are some problems with the creation of "world" database.

I follow this sequence:

 

1. mysql -u root -p world < ~/TrinityDB/TDB_full_434.04_2013_02_14.sql
2. for file in TrinityCore_4.3.4/sql/updates/world/*.sql; do mysql -u root -p world < $file; done
3. mysql -u root -p world < ~/TrinityDB/TrinityCore_4.3.4_DB_Alpha/tools/world_updates.sql

 

Last one SQL file is created by the script "merge_linux.sh" (follow the ufficial guide).

At step 2, I get some errors:

ERROR 1146 (42S02) at line 4: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 12: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 1: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 1: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 8: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1054 (42S22) at line 4: Unknown column 'race' in 'playercreateinfo_spell'
ERROR 1146 (42S02) at line 1: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 3: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 114: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 15: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1062 (23000) at line 3: Duplicate entry '6-11-0' for key 'PRIMARY'
ERROR 1146 (42S02) at line 81: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 97: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 42: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 1: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 79: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 2: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 87: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 33: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1054 (42S22) at line 314: Unknown column 'Dispel' in 'field list'
ERROR 1146 (42S02) at line 13: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 3: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 9: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 1: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 4: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 75: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1062 (23000) at line 73: Duplicate entry '7094' for key 'PRIMARY'
ERROR 1146 (42S02) at line 2: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 13: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 15: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 4: Table 'world.creature_ai_scripts' doesn't exist
ERROR 1146 (42S02) at line 2: Table 'world.creature_ai_scripts' doesn't exist

 

At step 3, I get:

ERROR 1054 (42S22) at line 964: Unknown column 'equipment_id' in 'field list'

 

Server start correctly, with some WARNINGS, but I can connect with a client to it.
If I create a character, h doesn't have any dress or arms, at the start!

Which is the correct procedure to import DB?

Thanks a lot in advance.

Link to comment
Share on other sites

first install TDB_full_434.04_2013_02_14.sql  full world

 

then check updates in the source directory , you need to install some of the 3.3.5a sql files , these are marked with "4.3.4" at the end I think from memory

 

there are 5 or 6 of them .

 

then from your DB directory install the updates for your build making sure you install the updates with the correct date I believe there will be 4 folders

 

of updates choose the latest and install them in order making sure you do not miss any out

Link to comment
Share on other sites

first install TDB_full_434.04_2013_02_14.sql  full world

 

then check updates in the source directory , you need to install some of the 3.3.5a sql files , these are marked with "4.3.4" at the end I think from memory

 

there are 5 or 6 of them .

 

then from your DB directory install the updates for your build making sure you install the updates with the correct date I believe there will be 4 folders

 

of updates choose the latest and install them in order making sure you do not miss any out

Ok, thanks a lot.

I will check as soon as possible and report here result.

Have a nice day.

Link to comment
Share on other sites

Hello everyone,

 

over the last few days, I was trying to make my own private server based on Trinity and I was following the instructions on this site: http://collab.kpsn.org/display/tc/How-to_Win. Everything went almost well (I encountered a couple of problems, but I was able to solve them). Unfortunetly at the very end I got two strange errors: 

- the first one: when I'm trying to run the authserver and the worldserver I get an error that vsinit.dll is missing. I tried to manually copy that library there, but then after running authserver and the worldserver nothing happens.

- the second one: I installed MySQL Server Community Edition just like in the above mentioned tutorial and everything went fine. Until the next day I looked on the "Services" tab in my Task Menager and noticed that mysql was not running. I tried to run it but I was unable to. I also tried to reinstall the MySQL Server but at the very end of cofiguration wizzard when i had to execute everything, I got an error 0. No matter what I did, I couldn't run the mysql process again.

 

I hope i described my problems well enough and I would be really thankfull for help.

Link to comment
Share on other sites


I tried to manually copy that library there,

 

1. Did you compile it on a different machine?

2. MySQL needs to be installed using the same password or installed on a different location (directory), this is an age old MySQL problem on Windows OS's in general. Might have to do some research on MySQL forums or website troubleshooting that exact scenario.

Link to comment
Share on other sites

first install TDB_full_434.04_2013_02_14.sql  full world

 

then check updates in the source directory , you need to install some of the 3.3.5a sql files , these are marked with "4.3.4" at the end I think from memory

 

there are 5 or 6 of them .

 

then from your DB directory install the updates for your build making sure you install the updates with the correct date I believe there will be 4 folders

 

of updates choose the latest and install them in order making sure you do not miss any out

 

There are no updates in the "old3.3.5a" folders labeled "4.3.4" in the cataclysm repo.

Link to comment
Share on other sites

 

That would be redundant since he also said to install the "updates" after installing the ones from 3.3.5a. Also, the ones in the "updates" folder with the "434" tag are very old compared to the full DB that's available. If you follow all the guides, even the two broken guides for Cata., the normal procedure is to import anything with a date newer than your core.

 

Unfortunately the whole Cata situation is a mess. People that have it working don't feel the need to put up a proper guide so other people can get it up and running for fear that people will switch to it as a release build.

 

I tried to get one running so I can see what bugs the pets have since I did a lot of work on them in 3.3.5a but after being met with frustration I gave up.

Link to comment
Share on other sites

Nope, I'm not using any repack, just a ready normal wotlk 3.3.5 client

 

Hence, the question I asked before...

1. Did you compile it on a different machine?

 

But, apparently you are using a repack.

 

wotlk client 3.3.5a is the game client on your machine.

 

The definition of a repack is a package that someone else compiled (worldserver and authserver) package for you.

 

We don't support repacks...

 

But, there is hope!

You can start here and will be glad to give all the Help and Support you need.

What this includes...

You will learn some basic programming skills, learn to compile it yourself, Some Database managment, and the best of all... self confidence that you did it yourself. (somewhat) ;)

Link to comment
Share on other sites

As for the repack, I explain it so: a long time ago I installed the wotlk 3.3.5 expansion and I'm using this ready installed thing since ever to connect to other server or so. Never installed on it any repack or so. What is more, like 2 or 3 years ago I was able to install TrinityCore on it just like explained in steps here ---> http://collab.kpsn.org/display/tc/How-to_Win so I don't suppose it's a matter of the client I'm using. Another info to, even after the Trinity instalation and so, I still kept a clean copy of this expansion.

Link to comment
Share on other sites

Whoa whoa cowboy....

You got your lasso wrapped on your own horse and not the bull....

 

You are confused...

The wow335a client does not matter. Clean copy, dirty copy, copy of copy of a copy, etc... I dont care...

 

Lets talk about the worldserver and authserver that your are attempting to execute.

First. What revision are you running? (worldserver.exe)

Right click on the worldserver.exe, select Properties, then click Details..

Link to comment
Share on other sites

I think the first issue you should resolve is the vsinit.dll problem. This has nothing to do with Trinity and if it is throwing errors when you try to start Trinity then your antivirus is probably broken and is causing problems.

 

Because it has "vs" in the name, you might think vsinit.dll is part of Visual Studio but as I mentioned earlier, vsinit.dll is part of Zone Alarm. I've been compiling with Visual Studio 2008 since forever and just to be sure, I ran a full system search for vsinit.dll and nothing was found (incidentally I have Visual Studio 6 and 2010 installed as well).

Link to comment
Share on other sites

I make now a small update :) I think I found the problem:

 

  1. Click Build -> Clean Solution.
    1. Visual C++ 2010: Right-click ALL_BUILD in the Solution Explorer on the left sidebar and select Clean.
    2. Unless you are just testing a compilation, it is always best to clean your build before compiling your new Trinity revision.
  2. Click Build -> Build Solution.
    1. Visual C++ 2010: Right-click ALL_BUILD and select Build.
    2. Compilation length differs from machine to machine, you should expect it to take 5-30 minutes.
    3. If you are asked to *Reload build files during the compile, do so.

 

I didn't make step nr. 1 so I suppose that made all those problems. This time I made it from the beginning and I have like twice as much files in my Build folder :) So now the auth- and worldservers are running as they should without any missing dlls or so.

 

But unfortunetly I encountered another problem. I did everything like in the tutorial when it comes to the databases and while I'm loading the sql files I get two warnings and when I start the worldserver, I get an error in the cmd that my database is outdated. But like I said I downloaded fresh sql files like in the tutorial and still I get such an error.

 

How to solve this problem ??

Link to comment
Share on other sites

When I try to run the world server it says:

 

"Loading Equipment templates...

[1054] Unknown column 'id' in 'field list'

Your database structure is not up to date. Please make sure you've executed all queries in the sql/updates folders.

 

This application has requested the Runtime to terminate it in an unusual way.

Please contact the application's support team for more information"

 

What is more, according to the tutorial, the steps are:

 

  1. Create the three databases by importing C:Trinitysqlcreatecreate_mysql.sql. You now have three databases - auth, characters, and world. You may need to refresh your program in order to see the new databases.
  2. Click on the "auth" database and import the auth database structure by importing C:Trinitysqlbaseauth_database.sql.
  3. Click on the "characters" database and import the characters database structure by importing C:Trinitysqlbasecharacter_database.sql.
  4. Click on the "world" database and import the world database structure by extracting and importing the "TDB_full" .sql file you downloaded from the Downloading the Database section.

 

I did the first 3 of them and then on the step 4 I downloaded TDB_full_335.51_2013_02_14, run it on the world database and it only said that I got 2 warnings and nothing more. Will it work if I drop the databases (mysql, auth, character and world) and do these steps again ??

Link to comment
Share on other sites


"Loading Equipment templates...

[1054] Unknown column 'id' in 'field list'

Your database structure is not up to date. Please make sure you've executed all queries in the sql/updates folders.

 

You didn't do any updates. You can't just import TDB (which was released on 2-14-2013) without doing any updates and expect it to run.

Link to comment
Share on other sites

I follwed the guide and the server not work at all (read my first post) :(

 

I will try Thugly's solution and report here the result... It will not cost me anything... If works, we have found a solution... If not works, we check again for another procedure...

 

Anyway, you are right: Cata situation is a mess... :(
I hope that will be possible to get it running as soon as possible, with a correct (and maybe unique) guide...

Link to comment
Share on other sites

No, you don't follow guide, guide tells you DON'T run:

2. for file in TrinityCore_4.3.4/sql/updates/world/*.sql; do mysql -u root -p world < $file; done

I know, but without that step Worldserver didn't start! It wasn't able to find some tables...

I read in some post/issues that is necessary to upload those files...

Link to comment
Share on other sites

No, you don't follow guide, guide tells you DON'T run:

2. for file in TrinityCore_4.3.4/sql/updates/world/*.sql; do mysql -u root -p world < $file; done

 

I don't know why you keep telling people to follow the guide. I've said several times, the guide DOES NOT work. If you follow it as written the core will not start. If you import the sql files in "updates" then it will start but with tons of errors.

 

The problem you run into, after getting around the "table does not exist" issue with importing the updates is that your playercreate_* tables are empty so you can't speak, use GM commands and you start with the wrong gear / spells.

 

If you want more help developing and testing the 4.3.4 branch then someone really needs to fix the guide and the SQL files.

  • Upvote 2
Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.


  • Similar Content

    • By xgamerninjax
      Hello all, first time posting here and it's really got me scratching my head.
      I've compiled everything on my own computer, and then transferred everything to a host computer so the server can stay live. The server was running fine for a month or so and then suddenly it just crashes when it hits "Loading C++ scripts", exiting saying "caught signal 22"
      I tried setting up the host computer from scratch and transferred everything over fresh and it's still happening for some reason. (Note, I can run the server perfectly on my personal pc where I compiled it.)
      Any help would be greatly appreciated, thanks!
      3d7e3a40e2b3+_worldserver.exe_[1-4_15-19-45].dmp 3d7e3a40e2b3+_worldserver.exe_[1-4_15-19-45].txt
    • By Rochet2
      A lot of people have asked how to debug so I made this short guide on how to set up debugging.
      This guide only tells you how to actually set up debugging in TrinityCore on Windows and Linux.
      This will not explain the basics of debugging. You can google those or play around with the debugger to learn.
      Here are a few videos that explain how to actually debug after setting debugging up on visual studio: https://youtu.be/0ebzPwixrJA and linux: https://www.youtube.com/watch?v=sCtY--xRUyI

      This guide contains multiple guides. Each list of bullet points is it's own guide.
      Make sure you can run the server normally before trying to debug.

      Windows:
      On Windows before anything you should check these
      - Before debugging or making crashlogs etc. with Visual Studio you must compile the core in "Debug" instead of "Release". You can select this in "Build>Configuration Manager" or at the top of Visual Studio window http://i.imgur.com/5oHd59j.png
      - You also need to move the new pdb files generate by compiling in debug mode on Visual Studio from the compile output folder (bin) to your server folder - these files contain information needed for debugging.
      - It is assumed that Solution Explorer is open. Open it by selecting "View>Solution Explorer" in Visual Studio http://i.imgur.com/hkW6Gk0.png
      -- You may want to click on the Home icon to reset the view on Solution Explorer http://i.imgur.com/N8UPwDh.png
      - You can place breakpoints in Visual Studio editor by right clicking a line of code and selecting "Breakpoint>Insert Breakpoint" http://i.imgur.com/L2TxBVG.png
      - At the top of the window you should see controls for stepping and continuing when you have started to debug.
      - Here is a video showing the basic Visual Studio functionality https://www.youtube.com/watch?v=Ijdk4z8-2OI
      Fastest way to debug on windows. This is the easiest way to start up debugging a script.
      - Start the authserver and worldserver normally
      - Open TrinityCore.sln in Visual Studio. This is what you usually open when you want to compile the core
      - In Visual Studio at the top select "Debug>Attach to process...>worldserver.exe" and click "Attach" http://i.imgur.com/jDEI2Hq.png
      - You are now debugging
       
      The second slower way of debugging on windows. This is useful for debugging something that occurs in the startup of the server.
      - Open TrinityCore.sln in Visual Studio. This is what you usually open when you want to compile the core
      - In solution explorer right click on worldserver and select "Set as StartUp Project" http://i.imgur.com/wvMzeRA.png
      - In solution explorer right click on worldserver and select "Properties" http://i.imgur.com/rTNEF9O.png
      -- In Properties you should go to "Configuration Properties>Debugging" and edit "Working Directory" to point to the server folder. For me this is the default compile folder so I use "$(OutDir)" http://i.imgur.com/aRI29fB.png
      - Start the authserver normally
      - Start the worldserver by selecting "Debug>Start Debugging". The server will start with debugging attached from the beginning http://i.imgur.com/cg1KJNw.png
      - You are now debugging
      Crashlogs on windows. Once you have a way to reproduce a crash you can get a crashlog that can help you resolve it.
      - After compiling the core in "Debug" instead of "Release" start up the worldserver and authserver
      - Reproduce the crash you have
      - In the server folder there is now a folder called Crashes that contains txt and dmp files. http://i.imgur.com/9eQIdql.png
      - You can open the txt files in text editors http://i.imgur.com/EH6R17E.png
      -- At the top of a txt file there is some information about your system and below it there is the Call Stack and below that there are Variables of each part of the call stack
      -- The Call Stack will tell you at the top what was the last function call before crashing and what function calls led to that function call.
      -- Next to the function names there is the file that the function is defined in and the line number the code was executing in that function.
      -- In the Variables section you can inspect variables that were present at each function call.
      -- Based on this information you are often able to see what crashed or get a better view of what you need to inspect more in your code.
      - The dmp file can be opened in Visual Studio
      -- Open TrinityCore.sln in Visual Studio. This is what you usually open when you want to compile the core
      -- Drag and drop the dmp file to Visual Studio
      -- In the window that opens click to "Debug with Native Only" http://i.imgur.com/OgyU2kM.png
      -- In the window popup click "Break" http://i.imgur.com/4jDzqRn.png
      -- You are now in a state like you would have hit a break point in the code or a crash while debugging. You can inspect the call stack and the variables.
      Edit and continue on windows. When debugging this allows you to change the code and without restarting the server apply those changes so they actually work ingame.
      - Open TrinityCore.sln in Visual Studio. This is what you usually open when you want to compile the core
      - In solution explorer right click on worldserver and select "Properties" http://i.imgur.com/rTNEF9O.png
      -- In Properties select "Configuration Properties>Linker>General" and set "Enable Incremental Linking" to "Yes". http://i.imgur.com/caQqwN5.png
      -- In Properties select "Configuration Properties>Linker>Advanced" and set "Image Has Safe Exception Handlers" to "No". http://i.imgur.com/FYzN8Ks.png
      -- In Properties select "Configuration Properties>C/C++>General" and set "Debug Information Format" to "Program Database for Edit And Continue". http://i.imgur.com/pxQ6I8N.png
      - At the top of the window select "Tools>Options". In the Options select "Debugging>General" and in there select "Enable Edit and Continue", "Enable Native Edit and Continue" and "Require source files to exactly match the original version".
      - Compile the server for the changes to take effect.
      - Set up "The second slower way of debugging" (I did not test edit and continue on other configurations)
      - Start the authserver normally
      - Start the worldserver by selecting "Debug>Start Debugging".
      - Try edit a cpp file a little and save it.
      - At top of Visual Studio window select "Debug>Apply Code Changes" and wait until the changes are applied. Warning: it can take considerable amount of time for the changes to be applied. http://i.imgur.com/77pb58E.png
      - If you have issues, be sure to check the error messages in Output. You can view it by selecting "View>Output" http://i.imgur.com/4cIznW9.png
      - This guide was written based on https://msdn.microsoft.com/en-us/library/esaeyddf.aspx and https://blogs.msdn.microsoft.com/vcblog/2015/07/22/c-edit-and-continue-in-visual-studio-2015/
      Linux:
      First we need to compile the server in debug mode.
      - Compile the server with the cmake flag -DCMAKE_BUILD_TYPE=Debug

      Debugging on linux. You can debug on linux by using GDB.
      - Here is a good video about it: https://www.youtube.com/watch?v=sCtY--xRUyI
      - Basically you
      -- Start the authserver
      -- Start the worldserver by using "gdb ./worldserver"
      -- Enter breakpoints by using break command on gdb
      -- Use the run command on gdb to start the server
      -- You are now debugging
      - You may also be interested in using VScode or some other more visual debuggers. https://www.youtube.com/watch?v=B0xTgyCwsAo
      Crashlogs on linux. Once you have a way to reproduce a crash you can get a crashlog that can help you resolve it.
      - Take crashreport.gdb from /contrib/debugger from source folder and place it to your server folder
      - Start the authserver
      - Start the worldserver by using "gdb -x crashreport.gdb ./worldserver"
      - Reproduce your crash
      - There should be a backtrace.log in your server folder that contains information about the crash like the callstack and variables in each function call in the call stack
      - This guide was written based on https://github.com/TrinityCore/TrinityCore/blob/master/contrib/debugger/README
      Running valgrind on linux. This helps you find memory errors like invalid reads and writes and memory leaks.
      - Here is a good video about it: https://www.youtube.com/watch?v=fvTsFjDuag8
      - Basically you
      -- Start the authserver
      -- Start the worldserver by using "valgrind ./worldserver"
      -- Run your code that you want to analyze and close the server
      -- The console or an output log should contain the valgrind log
    • By reyne
      Hey there!

      I've followed a few threads here about map extraction, and am still having issues. Originally, I was having the issue described here.
      After following the advice given in that thread (creating characters of both BC races and running around for a bit), I am no longer getting that error, however now I get the following error while trying to extract maps:

      `Error loading World\Maps\Expansion01\Expansion01_42_6.adt`

      This repeats for every line in Expansion01, and then the extractor crashes.

      I'm not sure where else to go from here.

      Thanks for your help

      Edit: I've created an 85 on an i85 server and flown all around Outland now, same issue.
    • By Uee
      I recently found the Trinity Cataclsym Preservation Project and thought I will try it out.
      I am already running 3.3.5a and Master - both server run great
      Pulled 4.3.4 down using Git and built it same way as others:
      boost_1_73_0 cmake 3.17.2 Mysql 5.7.30 VS Community 2019 Built fine - no issue. Used 'Extractor.bat' to run all the map extractors - worked great!
      Noticed there was extra file 'connection_patcher.exe`, ran that - worked great! Now have "wow_patched" and use this to launch client
      MySQL runs in standalone mode, -initialize, added base sql files, imported, auth and character sql files
      Configured both the .conf files and passwords, IPs etc are all in place.
      Note: When loading the exe and built conf file, bnetserver complain about these items missing, so I add them:
      Updates.AutoSetup = 1 Updates.EnableDatabases = 0 LoginDatabase.SynchThreads = 1 Load up Mysql - loads fine
      Load up bnetserver and appears to load ok - last few lines look like this:
      Connected to MySQL database at 127.0.0.1
      DatabasePool 'auth' opened successfully. 2 total connections running.
      Started auth database connection pool.
      Listening on connections from worldservers on port 1118...
      Load up worldserver and it adds the FULL world and hotfixes, then applied all updates (confirmed archived in SQL) - last few lines look like this:
      Calculate next monthly quest reset time...
      Calculate random battleground reset time...
      Calculate guild limitation(s) reset time...
      Calculate next currency reset time...
      World initialized in 0 minutes 13 seconds
      TrinityCore rev. d0c7bbab40bc 2020-05-06 00:01:21 +0200 (master branch) (Win64, RelWithDebInfo, Static) (worldserver-daemon) ready...
       
      There are no db errors in logs.
      Config.wtf contain portal, realmlist as remote server and patchlist as localhost.
      When I try to connecting using "user@local" and password I get immediately disconnected.
      What I did noticed different is that the bnetserver doesnt add "Added realm "Battle for Azeroth" at 192.168.10.213:8085." (From my Master log) 
      3.3.5a also have this line as last line in authserver - but 4.3.4 is not giving me this one.
      Realmlist table is accurate with right information.
      Anyone know why bnetserver is not starting me realm?
       
    • By Deer_Hunter
      Hello all,
      I just updated from the latest Git 
      Trinity Core REV. ac6baa547376 + 2020-02-21  3.3.5 Branch.
      I'm getting this error after crash.
      Problem signature:
        Problem Event Name:    APPCRASH
        Application Name:    worldserver.exe
        Application Version:    0.0.0.0
        Application Timestamp:    5e50a462
        Fault Module Name:    StackHash_f12f
        Fault Module Version:    6.3.9600.19629
        Fault Module Timestamp:    5e2fdc0d
        Exception Code:    c0000374
        Exception Offset:    PCH_9E_FROM_ntdll+0x0000000000090D0A
        OS Version:    6.3.9600.2.0.0.272.7
        Locale ID:    1033
        Additional Information 1:    f12f
        Additional Information 2:    f12f0934d3e965f73c68e60f20f2cd40
        Additional Information 3:    7595
        Additional Information 4:    7595e4d8d703db9dcd3d2f6ea540e357
      the exception code says its a Heap error,  I'm not sure how to troubleshoot this.
      Thanks
×
×
  • Create New...