Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error Code: 1146 - Table 'ace_world.weenie_properties_float' doesn't exists #3740

Closed
davidwheelen opened this issue Nov 12, 2021 · 7 comments

Comments

@davidwheelen
Copy link

Bug Report or Feature Request (mark with an x)

- [ ] bug report -> please search issues before submitting
- [ ] feature request

Repro steps.

When importing and running the sql update script 2021-03-18-00-Update-Casting-Stone.sql I get an error code 1146. I'm running this script on the shard databas right after running the base sql script found here: https://github.com/ACEmulator/ACE/blob/master/Database/Base/ShardBase.sql

The log given by the failure.

Here is the log contents:

Query:
/* PropertyFloat.CriticalFrequency - 51899 Casting Stone */
UPDATE biota_properties_float bfloat
INNER JOIN biota ON bfloat.object_Id=biota.Id
INNER JOIN ace_world.weenie_properties_float wfloat ON wfloat.object_Id=biota.weenie_Class_Id
SET bfloat.value=wfloat.value
WHERE biota.weenie_Class_Id=51899 and bfloat.type=147 and wfloat.type=147

Error occured at:2021-11-12 11:18:48
Line no.:7
Error Code: 1146 - Table 'ace_world.weenie_properties_float' doesn't exist

Desired functionality.

I'd like to be able to apply these updates so I can get my server up and running.

Mention any other details that might be useful.

My installation is on Windows 10 Pro with mysql v8.0 community editio
sqlyog.err.txt
Screenshot 2021-11-12 112846
n

@ziang4891
Copy link
Contributor

ziang4891 commented Nov 12, 2021

Why are you doing that? If this is a new server, you don't need to run any of the update scripts

@ziang4891
Copy link
Contributor

This error means that there is probably something wrong with your database, as the ace_world DB or weenie_properties_float table is missing, the latter of which is a critical table for ACE operation, and shouldn't be missing

@davidwheelen
Copy link
Author

davidwheelen commented Nov 12, 2021 via email

@ziang4891
Copy link
Contributor

ziang4891 commented Nov 12, 2021

You don't need to use the update scripts for a new install. The update scripts in
ACE/Database/Updates/Shard/ are for those with existing servers that already have data in the Shard that needs to be modified

@davidwheelen
Copy link
Author

davidwheelen commented Nov 12, 2021 via email

@ziang4891
Copy link
Contributor

ziang4891 commented Nov 12, 2021

Many of those scripts were made assuming that the World DB already exists, which it won't if following the install guide for a new install. There may be one or two that might be needed, so I would suggest continuing on with your install and then try running those again after the World DB is setup.

@davidwheelen
Copy link
Author

davidwheelen commented Nov 13, 2021 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants