thank you for your efforts... I saw 2 topics in Oracle Apex forum for how to create and consume API's for master-detail data, is there any possibility we can create and consume API's for a master-detail data? I am struggling for it and not yet found any solution for DML.
@ahmedharoon274013 күн бұрын
thank you for your efforts... I saw 2 topics in Oracle Apex forum for how to create and consume API's for master-detail data, is there any possibility we can create and consume API's for a master-detail data? I am struggling for it and not yet found any solution.
@desarai828415 күн бұрын
YOU ARE AN ANGEL 👼
@desarai828416 күн бұрын
very grateful for this video. thank you!
@mohammedsaleh225425 күн бұрын
works like a charm on win11 + ol9 + vbox7.1.2 ... thx man appreciated
@CinLing-n4hАй бұрын
Hi Tim.. i have my ORDS installed but when i run script ORDS.enable_schema, it give me error identifier 'ORDS.ENABLE_SCHEMA' must be declared. i have reinstall my ORDS multiple times, but the result was same. What should i do to fix it? Really appreciate your help..
@TheTimHallАй бұрын
My instant thought is that ORDS is not installed properly. What I would do. 1) Check the output from the installation. Is there anything there that would suggest the installation failed? 2) Search for the ORDS package in DBA_OBJECTS. Is it there? 3) Grant execute permission on the ORDS package to your user. This should not be necessary, so I would question the validity of the installation if this is needed.
@CinLing-n4hАй бұрын
@@TheTimHall i found it, tim.. my ORDS was installed at pluggable database.. while my database on CBD.. i reinstalled my oracle but uncheck create as pluggable database and it solved.. Thanks alot for your hint..
@souridhbanerjee2351Ай бұрын
Hi i have a question, i am trying to set the cursor sharing on system level using alter system set cursor_sharing = Force scope=both. But even after doing this i see that the sql queries are still using literals instead of bind variables. Is a database bounce required for this change to take effect or do i need to flush the shared_pool? Any response will be appreciated
@TheTimHallАй бұрын
Any existing plans that use literals will still be used. Cursor sharing only affects newly parsed SQL. You can flush your shared pool to remove the SQL using literals, and they shouldn't come back. Just remember doing the flush will mean your shared pool has to warm up again, so there will be a lot of hard parsing until it is warmed up. :)
@subashinimurugesan0406Ай бұрын
HOW TO DOWNLOAD THIS SQL SERVER ON MY LAPTOP??
@ALIAl-khatib-g4lАй бұрын
👏👏👍👍👍
@andreacortemiglia3182Ай бұрын
Hello thank you for sharing. Ive followed the details but I can't get both Nodes up at the same time. I'm using Oracle Linux 8 on Azure VM as the main host. The Node that is failing shows "CRS-8503", cssd is reporting "..CSSD:3427600128: [ INFO] clssnmvDHBValidateNCopy: node 2, ol8-19-rac2, has a disk HB, but no network HB". MTU is correctly configured. Any idea about this issue?
@TheTimHallАй бұрын
No idea. This is a vagrant build on Virtual box, not Azure.
@andreacortemiglia3182Ай бұрын
@@TheTimHall thank you very much. I installed virtualbox and vagrant on Azurre VM. Btw just read is recommend using Oracle RAC on Docker on KVM or virtual box on-prem or in Oracle Cloud. So it's not supported on Azure. It must be a network issue
@TheTimHallАй бұрын
@@andreacortemiglia3182 I'm not sure what I would expect from this. Installing VMs inside VMs seems rather like a recipe for disaster.
The interface is more like a interpretor after entering ";" . Cannot edit or paste scripts. Is there any editor for it. Like i type in text file and execute it on system
@TheTimHall2 ай бұрын
There are lots of interfaces. - SQL*Plus - Which comes with the product. - SQLcl - A lightweight Java utility, that is similar to SQL*Plus. - SQL Developer - A Java IDE for Oracle. - SQL Developer extension for VS Code - As the name suggests, an extension for VS Code that gives you some of the functionality of SQL Developer.
@arjunsuri85742 ай бұрын
Can we use external table for complete bucket instead of just one object? Also, my objects in the bucket? are json files, how to load json files in external table?
@boopathidanasekaran37982 ай бұрын
I need ords 3.x due compatibility reason where can I get it is it possible to share me
@hargunsuri2 ай бұрын
Hello Tim, Thank you for the video and your help. I now need to set up authorisation using Red Hat Single Sign-On (RHSSO) for the REST APIs exposed by ORDS. Could you guide me through this process? It would be really helpful!
@TheTimHall2 ай бұрын
Sorry. I've never used that.
@hargunsuri2 ай бұрын
In General term I am trying to integrate ORDS with an external identity provider for OAuth-based authorization. Use Case: I am getting a token from an external identity provider (RHSSO), passing it as a Bearer token to ORDS, and ORDS authenticate the token with the external provider (RHSSO). Thank you!
@TheTimHall2 ай бұрын
@@hargunsuri Sorry. I've never done that. It might be worth raising it in the Oracle community forums to see if someone there knows the answer.
@hargunsuri2 ай бұрын
Thank you Tim Yes I have done that.
@sebastianthomas42863 ай бұрын
Made a blunder it seems. Based on your video, I changed COMPATIBLE parameter to 19.11.0 by executing the command below ALTER SYSTEM SET COMPATIBLE = '19.11.0' SCOPE=SPFILE But now I am not able to connect the database. It throws the error below: ORA-12514: TNS:listener does not currently know of service requested in connect descriptor May I know how to set COMPATIBLE value to its default - 19.0.0?
@Adam_Marley3 ай бұрын
You are GREAT at explanation and giving the best simple examples. Thank you
@Adam_Marley3 ай бұрын
Wonderful Video! Thank you for your excellent clarification on this (what I find tricky) topic
@irfaankhan80353 ай бұрын
If we need to view the passwords how would one do that?
@oracle-base3 ай бұрын
You can't. Once they are in, that's it. This is not a password manager. You should use a password manager to keep all passwords. I use KeePass, but there are several.
@DhruwGupta-o9b4 ай бұрын
Very informatic video
@SMondalYT5 ай бұрын
How to parse .xls files ?
@oracle-base5 ай бұрын
".xslx" files work the same as all the other file types.
@AstorSkywalker5 ай бұрын
Is it possible to view to checksum string?
@oracle-base5 ай бұрын
I don't believe so. The checksum itself is written into the file, so I'm not sure you could test it externally to the import, since by writing the checksum to the file, you've actually altered the checksum. :)
@Munzersaker-bh5qn6 ай бұрын
How can i call the pipelined function over dblink?
@oracle-base6 ай бұрын
You can't. See restriction in docs. docs.oracle.com/en/database/oracle/oracle-database/19/lnpls/PIPELINED-clause.html
@aruljebin6 ай бұрын
Hi Tim, In our database, we are migrating jobs scheduled using DBMS_JOB to DBMS_SCHEDULER. In the current process, we are able to pass the instance ID as an argument in DBMS_JOB, but that option does not seem to be available in DBMS_SCHEDULER. Is there any workaround for this?
@oracle-base6 ай бұрын
You create a service with the correct instance association, then create a job assigned to that service.
@张贵成7 ай бұрын
How to shrink secure file in lower version. Such as 11g or 19c,since shrink space not support for them
@MFM888327 ай бұрын
Perfect video with excellent examples, zero fluff and just GOLD! Thank you.
@sankalpgupta66307 ай бұрын
Tim, is there a way to find mimetype of uploaded file ?
@moldovanmoldovan75937 ай бұрын
I love that finally there is enough space for naming objects and identifiers in PL/SQL
@catquilt747 ай бұрын
Excellent video, short and to the point. Thank you!
@dileepkumarvarma19997 ай бұрын
whats the script you are running and why? is that really mandatory to have the max_string_size extended?
@abrhamb29528 ай бұрын
How do you get port 8080
@oracle-base8 ай бұрын
ORDS is a PL/SQL gateway. In order to use ORDS you have to install it. You can run it in standalone mode, or under a Java container such as Tomcat. This is how you get access to port 8080, or any other port you define. ORDS then connects to the database, which is where the data and the ORDS package are. Whenever you read anything about ORDS, it assumes you are running ORDS with a connection to an Oracle database. oracle-base.com/articles/misc/oracle-rest-data-services-ords-installation-on-tomcat-22-onward
@abrhamb29528 ай бұрын
@@oracle-base Thank you
@togaramutasa96695 ай бұрын
@@oracle-base So if you have Oracle Apex already installed then you are sorted on the ORDS issue, you should already have the ORDS Gateway right?
@TheTimHall5 ай бұрын
@@togaramutasa9669 APEX and ORDS are two separate products. You can install APEX without using ORDS and vice versa. ORDS is the preferred gateway for APEX, so if you are using APEX it is probably you also have ORDS installed, but it's not guaranteed. You need to speak to whoever set up APEX in your company.
@MrZtapp8 ай бұрын
Great video. However, how to protect the client secret?
@TheTimHall8 ай бұрын
How do you protect any password? Only tell the people who need to know it. If you think it is compromised, change it.
@MrZtapp8 ай бұрын
@@TheTimHall Sorry, I meant that I do not want to expose it in my mobile app code. Trying to find a way of protecting the client secret and not need to hard code it in the app.
@TheTimHall8 ай бұрын
@@MrZtapp One again, the same as you would for any other protected resource in your application.
@MrZtapp8 ай бұрын
@@TheTimHall Well this is a game (Unity3d) and the only resource I really need to protect is the access to the JSON database where I have all game and player data. As of now I have the client secret hard coded in the code and is currently researching and key management system I can use. However, I know very little about this topic.
@TheTimHall8 ай бұрын
@@MrZtapp I know nothing about Unity (apart from they have an atrocious pricing model that has lots of bad press). I suggest you ask on a Unity development forum, as this is not an ORDS issue. It's a programming issue.
@pe500a9 ай бұрын
Wondering if there is a way to print out the sql execution outputs/dbms so we can understand what exactly has been processed at each moment? Cheers
@oracle-base9 ай бұрын
You can turn on SQL trace for the user and check that. I'm not exactly sure why you would care about execution plans for DDL and procedure creations though.
@pe500a9 ай бұрын
@@oracle-base thanks for your reply. Thought that could be rather interesting to enhance a log such as "<script_name> ran successfully in 100ms" by adding "Table created" so that the implementer has clear picture of what has ran.
@fmsilva119 ай бұрын
any playbook to run on oracle database with multiple cdb and multiple pdb no the host ?
@eduardoantoniogonzalezbarr93699 ай бұрын
Muy malo el video, ya que no indica como sigue el proceso, si creao la BD Standby o no se que deja todo en el limbo
@hossamalaaal-deen71739 ай бұрын
are there alternatives to the implicit statements for 11g?
@oracle-base9 ай бұрын
I'm not sure what you mean. Implicit statement results are an option to interact with the ref cursor contents, but it is an alternative to the traditional approach.
@AlomLt9 ай бұрын
If I have a table with LONG columns, how does it work? Since it shows me this error: ORA-00997: illegal use of LONG datatype
@oracle-base9 ай бұрын
As you've discovered, it doesn't. Oracle deprecated LONG columns a very, very long time ago. As a result, most features added since that deprecation do not support LONG columns. You should migrate from LONG to LOB (CLOB or BLOB).
@MohanS-kq4ry9 ай бұрын
Sir may i know the purpose of append that you have used in insert statement?
Hello, thanks for the videos! Could you please answer me a question? If I have 2 servers differents (A and B) , and I would like to transfer a PDB1 (Server A) to server B. What kind of migration is better performance? 1- Using RMAN (duplicate) 2- CREATE PLUGGABLE DATABASE PDB1_copy FROM PDB1@clone_link;
@oracle-base10 ай бұрын
They will be similar. Effectively a hot clone takes a backup and transports it. I typically do this using a PDB clone, as it is logically simipler.
@ilpaolotopleggend666310 ай бұрын
thanks
@prakasharc762911 ай бұрын
In SQL developer ref cursor is not returning the result in grid format, is any way/option to return result in grid/table format? Thank you for the video.
@743Dora Жыл бұрын
Is it possible to load from the existing directory? If so can I get an example also do I need to install any dependencies to execute it?
@oracle-base Жыл бұрын
Yes. You pass in a directory name and file. The example does this, so not sure why you would need a separate example. As explained, it need you to have APEX 19.1 or newer installed in the database.
@mrsdhuha Жыл бұрын
Many thanks, this was very helpful.
@Everything_Is_Grey Жыл бұрын
Awesome as always.
@mridulranjan1069 Жыл бұрын
Hello, may I ask which Terminal and what font are you using in this video?
@mridulranjan1069 Жыл бұрын
Hello, may I ask which Terminal and what font are you using in this video?
@oracle-base Жыл бұрын
It's MobaXterm. The font is the default font in that terminal.
@mridulranjan1069 Жыл бұрын
Hello, may I ask which Terminal and what font are you using in this video?