oracle-sqldeveloper

SQL developer error with “disable modules and continue”

末鹿安然 提交于 2021-02-16 04:50:00
问题 I am trying to open SQL developer and getting following error on a dialogue box Warning - could not install some modules: oracle.java_annotations - org.netbeans.InvalidException: Netigso: D:\sqldeveloper-4.0.2.15.21-no-jre\sqldeveloper\ide\lib\annotations.jar: Not found bundle:oracle.java_annotations oracle.ide_boot - org.netbeans.InvalidException: Netigso: D:\sqldeveloper-4.0.2.15.21-no-jre\sqldeveloper\ide\lib\ide-boot.jar: Not found bundle:oracle.ide_boot oracle.ide.macros - org.netbeans

pivot XML parsing

独自空忆成欢 提交于 2021-02-11 13:56:48
问题 I have problem exactly like the post: Parse xmltype into table after pivot xml I want to use pivot xml and then parse the xml (maybe with xmltable function) to table. What can I do if I don't know the countries name and how many countries exist? Thanks! 来源: https://stackoverflow.com/questions/62794756/pivot-xml-parsing

Auto incremental date field and version oracle sql for a table

扶醉桌前 提交于 2021-02-11 07:08:19
问题 I have a table and in this table i have data is not properly loaded data integrity issue ,since this is a dimension table we need to maintain the effective_dt_from and effective_dt_to and version correctly ,below is the table and sample data create table TEST ( LOC_SID NUMBER(38,0), CITY VARCHAR2(180 BYTE), POSTAL_CD VARCHAR2(15 BYTE), EFFECTIVE_DT_FROM DATE, EFFECTIVE_DT_TO DATE, VERSION NUMBER(38,0) ); Insert into TEST values (81910,'chicago',null,to_date('01.01.00 00:00:00','DD.MM.YY HH24

how to copy the records from output of oracle SQL developer to excel sheet

久未见 提交于 2021-02-07 09:47:45
问题 I got some records from Oracle SQL developer & in the output query result . I want to copy the data & paste into the Excel sheet. How to copy the records from output of oracle SQL developer to Excel sheet. 回答1: It's simple, select all the records from the output query result and copied it by using Ctrl+C then after open new DataBase File on top left side of the Oracle SQL developer . Then after paste all the data there into that DataBase File . Again copied the data from that DataBase files

Oracle SQL Developer: Test failed: The Network Adapter could not establish the connection?

狂风中的少年 提交于 2021-02-05 08:01:27
问题 I'm in real need of a help here. I setup a Oracle Database server on a VirtualBox VM and until yesterday everything seemed to work just fine. Today when I initiated the database to keep working, and turned on SQLDeveloper in my local machine (Client machine) it threw me this error: Erro de ES: The Network Adapter could not establish the connection My VirtualBox VM network setting is configure to bridged adapter . And I was able to connect just fine and today, out of nothing this error started

Sql Developer can conect Oracle Database 12c with TNS but can not connected with basic

拥有回忆 提交于 2021-02-04 21:25:54
问题 I have installed a new oracle database(12.2.0.1). I have create a pluggable database (orclpdb). I create a user Fed_Test_User in the PDB. And I can connect it by SQL developer with TNS(can connect by conn Fed_Test_User/welcome@orclpdb). But I can not connect by SQL Developer with basic connection type. Listener.ora: LISTENER = (DESCRIPTION_LIST = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521)) (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521)) ) ) sqlnet.ora: NAMES

Oracle 10g accepting 5 digit year in a Date

风流意气都作罢 提交于 2021-02-02 09:55:13
问题 I managed to enter the date 21-Feb-12017 (I know it's not a correct date) in Oracle 10g into a date column. Oracle accepted the date fine. When I tried to select it back in SQL Developer, SQL Developer displayed it as NULL. But when I tried to retrieve the date thru java, I got the value back as how I inserted. Wondering what's going on because I could also see that Oracle converted a different 5 digit year into a 4 digit year. I entered 21-Feb-21019 and Oracle converted the year to 4581

ORA-00933 SQL command not properly ended but good in SQL Developer

独自空忆成欢 提交于 2021-02-02 09:01:29
问题 I am hoping someone can find what is the issue with my query because I am unable to see fault in it and Oracle SQL Developer seems to run the same query as the code in my Java Swing Application just fine. My query in SQL Developer: SELECT ad.ID,ad.Script_Name,ad.Current_Status, ad.Issues_found_during_run,ad.Testers, ad.Run_Date,ad.Tools,u.fTag,u.role, dbms_lob.substr(u.avatar) FROM allData ad INNER JOIN users u ON u.fTag = ad.lastUserWhoUpdated GROUP BY ad.ID,ad.Script_Name,ad.Current_Status,

ORA-00933 SQL command not properly ended but good in SQL Developer

╄→гoц情女王★ 提交于 2021-02-02 08:59:30
问题 I am hoping someone can find what is the issue with my query because I am unable to see fault in it and Oracle SQL Developer seems to run the same query as the code in my Java Swing Application just fine. My query in SQL Developer: SELECT ad.ID,ad.Script_Name,ad.Current_Status, ad.Issues_found_during_run,ad.Testers, ad.Run_Date,ad.Tools,u.fTag,u.role, dbms_lob.substr(u.avatar) FROM allData ad INNER JOIN users u ON u.fTag = ad.lastUserWhoUpdated GROUP BY ad.ID,ad.Script_Name,ad.Current_Status,

ORA-00933 SQL command not properly ended but good in SQL Developer

有些话、适合烂在心里 提交于 2021-02-02 08:59:21
问题 I am hoping someone can find what is the issue with my query because I am unable to see fault in it and Oracle SQL Developer seems to run the same query as the code in my Java Swing Application just fine. My query in SQL Developer: SELECT ad.ID,ad.Script_Name,ad.Current_Status, ad.Issues_found_during_run,ad.Testers, ad.Run_Date,ad.Tools,u.fTag,u.role, dbms_lob.substr(u.avatar) FROM allData ad INNER JOIN users u ON u.fTag = ad.lastUserWhoUpdated GROUP BY ad.ID,ad.Script_Name,ad.Current_Status,