ipstor

0

ipstor

Oracle

ORA-01659:無法分配超出7的MINEXTENTS(在表空間DATA中)

ORA-01659: 無法分配超出 7 的 MINEXTENTS (在表空間 DATA 中) 查了一下資料,原來是在創建表空間的時候,沒有把表空間設置成自動擴展,表空間不夠造成的。可以選擇擴大表空間,或者設置成自動擴展。 通過DBA帳號查出表空間存儲路徑 select name from v$datafile 1E:\APP\ADMINISTRATOR\ORADATA2\ORCL\SYSTEM01.DBF 2E:\APP\ADMINISTRATOR\ORADATA2\ORCL\SYSAUX01.DBF 3E:\APP\ADMINISTRATOR\ORADATA2\ORCL\UNDOTBS01.DBF 4E:\APP\ADMINISTRATOR\ORADATA2\ORCL\USERS01.DBF 5E:\APP\

By ipstor

source code

vs code optimize for Python development

gpm and git plugging integrate in vs-code phillips@phillips-ThinkPad-T420:~/gpm/22.21.1/home/git/automation$ more .vscode/settings.json { “name”: “Python”, “type”: “python”, “request”: “launch”, “stopOnEntry”: false, “python.pythonPath”: “/usr/bin/python3”, “env”: {“PYTHONPATH”:”${workspaceRoot}”}, “envFile”: “${workspaceRoot}/.env”, “program”: “${file}”, “cwd”: “${workspaceRoot}”, “console”: “integratedTerminal”, “python.envFile”: “${workspaceFolder}/.env” } phillips@

By ipstor