成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

解決django migrate報(bào)錯(cuò)ORA-02000: missing ALWAYS keyword

瀏覽:128日期:2022-07-05 18:30:55

錯(cuò)誤信息

解決django migrate報(bào)錯(cuò)ORA-02000: missing ALWAYS keyword

PS D:parttimepythondjangoguanxiangzhiji> python manage.py migrateOperations to perform: Apply all migrations: admin, auth, contenttypes, sessionsRunning migrations:Traceback (most recent call last): File 'D:appanacondalibsite-packagesdjangodbbackendsutils.py', line 82, in _execute return self.cursor.execute(sql) File 'D:appanacondalibsite-packagesdjangodbbackendsoraclebase.py', line 510, in execute return self.cursor.execute(query, self._param_generator(params))cx_Oracle.DatabaseError: ORA-02000: missing ALWAYS keywordThe above exception was the direct cause of the following exception:Traceback (most recent call last): File 'D:appanacondalibsite-packagesdjangodbmigrationsrecorder.py', line 67, in ensure_schema editor.create_model(self.Migration) File 'D:appanacondalibsite-packagesdjangodbbackendsbaseschema.py', line 307, in create_model self.execute(sql, params or None) File 'D:appanacondalibsite-packagesdjangodbbackendsbaseschema.py', line 137, in execute cursor.execute(sql, params) File 'D:appanacondalibsite-packagesdjangodbbackendsutils.py', line 99, in execute return super().execute(sql, params) File 'D:appanacondalibsite-packagesdjangodbbackendsutils.py', line 67, in execute return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) File 'D:appanacondalibsite-packagesdjangodbbackendsutils.py', line 76, in _execute_with_wrappers return executor(sql, params, many, context) File 'D:appanacondalibsite-packagesdjangodbbackendsutils.py', line 84, in _execute return self.cursor.execute(sql, params) File 'D:appanacondalibsite-packagesdjangodbutils.py', line 89, in __exit__ raise dj_exc_value.with_traceback(traceback) from exc_value File 'D:appanacondalibsite-packagesdjangodbbackendsutils.py', line 82, in _execute return self.cursor.execute(sql) File 'D:appanacondalibsite-packagesdjangodbbackendsoraclebase.py', line 510, in execute return self.cursor.execute(query, self._param_generator(params))django.db.utils.DatabaseError: ORA-02000: missing ALWAYS keywordDuring handling of the above exception, another exception occurred:Traceback (most recent call last): File 'manage.py', line 21, in <module> main() File 'manage.py', line 17, in main execute_from_command_line(sys.argv) File 'D:appanacondalibsite-packagesdjangocoremanagement__init__.py', line 381, in execute_from_command_line utility.execute() File 'D:appanacondalibsite-packagesdjangocoremanagement__init__.py', line 375, in execute self.fetch_command(subcommand).run_from_argv(self.argv) File 'D:appanacondalibsite-packagesdjangocoremanagementbase.py', line 323, in run_from_argv self.execute(*args, **cmd_options) File 'D:appanacondalibsite-packagesdjangocoremanagementbase.py', line 364, in execute output = self.handle(*args, **options) File 'D:appanacondalibsite-packagesdjangocoremanagementbase.py', line 83, in wrapped res = handle_func(*args, **kwargs) File 'D:appanacondalibsite-packagesdjangocoremanagementcommandsmigrate.py', line 234, in handle fake_initial=fake_initial, File 'D:appanacondalibsite-packagesdjangodbmigrationsexecutor.py', line 91, in migrate self.recorder.ensure_schema() File 'D:appanacondalibsite-packagesdjangodbmigrationsrecorder.py', line 69, in ensure_schema raise MigrationSchemaMissing('Unable to create the django_migrations table (%s)' % exc)django.db.migrations.exceptions.MigrationSchemaMissing: Unable to create the django_migrations table (ORA-02000: missing ALWAYS keyword)

環(huán)境情況

1、操作系統(tǒng):Win10 64bit

解決django migrate報(bào)錯(cuò)ORA-02000: missing ALWAYS keyword

2、Python版本:3.7.3

解決django migrate報(bào)錯(cuò)ORA-02000: missing ALWAYS keyword

3、django版本:2.2.4

解決django migrate報(bào)錯(cuò)ORA-02000: missing ALWAYS keyword

4、Oracle版本:11.2.0.4

解決django migrate報(bào)錯(cuò)ORA-02000: missing ALWAYS keyword

5、cx_oracle版本:7.0.0

解決django migrate報(bào)錯(cuò)ORA-02000: missing ALWAYS keyword

6、settings配置

解決django migrate報(bào)錯(cuò)ORA-02000: missing ALWAYS keyword

原因分析

從錯(cuò)誤提示ORA-02000: missing ALWAYS keyword看,是SQL語(yǔ)法錯(cuò)誤,創(chuàng)建表的時(shí)候使用了Always這個(gè)關(guān)鍵詞。 Always是在Oracle12c的新特性自增序列里用到的,語(yǔ)法如下:

generated-column-spec[ GENERATED { ALWAYS | BY DEFAULT } AS IDENTITY [ ( START WITH IntegerConstant [ ,INCREMENT BY IntegerConstant] ) ] ] ]

但是,我機(jī)器上用的是Oracle11.2.0.4版本,這個(gè)語(yǔ)法在11g版本里執(zhí)行自然就會(huì)報(bào)ORA-02000的錯(cuò)誤。

解決方案

看了網(wǎng)上的一些解決方案,主要有2種:

(1)將Oracle升級(jí)到12c

(2)將cx_oracle降低版本

剛開始選用方案(2),覺得簡(jiǎn)單,但是實(shí)際操作下來(lái),問(wèn)題一環(huán)套一環(huán),比如說(shuō)將cx_oracle降低版本后,接著出現(xiàn)了django版本與cx_oracle版本不適應(yīng)的情況,接著又降低django版本。。。接著做還是不行,最終放棄了。不知道有沒有人成功過(guò)。

重新選擇方案(1),裝了Oracle12.1.0.2

解決django migrate報(bào)錯(cuò)ORA-02000: missing ALWAYS keyword

再將django和cx_oracle升級(jí)回最新版本,migrate的時(shí)候就成功了

解決django migrate報(bào)錯(cuò)ORA-02000: missing ALWAYS keyword

以上這篇解決django migrate報(bào)錯(cuò)ORA-02000: missing ALWAYS keyword就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: word
相關(guān)文章: