How to fetch the remaining records from a table
Hi Experts,We have records in table XX_LTST_DETAIL. The few columns in this table are item,family,type,reserve, fiscal_year,period,transaction_type,quantity,value,transaction_date,subinventory.Now, we...
View ArticleRE: Access violation at address 000007FEC897C8BA in module 'oraclient12.dll'....
There is a workaround: Find the table in the Schema Browser, or do a CTRL+D (for describe), type in the table name, and enter.Then go to the data tab. You can use the view/edit query to see how to...
View ArticleRE: SQL Recall - Bottom pane
I thought the Expand/Collapse options on the top part's right-click context menu was sufficient. Anyway, I understand now. Thanks for clarifying.
View ArticleProduction Deployment using Bitbucket with Oracle 12c?
I am working on a team that is exploring moving our VCS to BitBucket/Git. I would like to hear from anyone who is using Bitbucket, and can give me suggestions on what tools and methodology they are...
View ArticleRE: Stream read error when executing query against V$SQL in Editor
More Info:I can repeat the problem with a query as simple as:select level, to_clob(level) LEVEL_AS_CLOB from dual connect by level <= 200;The problem can be reproduced without using the popup CLOB...
View ArticleRE: Access violation at address 000007FEC897C8BA in module 'oraclient12.dll'....
Thank you, Niel and John!Maybe it will get fixed in a later version.In the meantime, selecting the columns explicitly, using SQL+, or doing John's schema browser data table workaround will all suffice....
View ArticleRE: Access violation at address 000007FEC897C8BA in module 'oraclient12.dll'....
Something I started doing ( took a good couple of weeks before it was habbit ), is to every time I need to select an XMLTYPE column, useXMLSERIALIZE (CONTENT xml_payload AS CLOB INDENT SIZE = 2)It not...
View ArticleRE: Toad Automation
Thanks very muchSo if we get a request like that, we have to open TOAD and run the script manuallyI was thinking if we could automate it some how :)
View ArticleRE: Toad Automation
You can automate that, just not with Toad. You will need to parse your email text somehow and extract the data of interest. There are many hits on Google for writing VBA scripts and what not to get to...
View ArticleRE: Toad Automation
Thanks Mike for that,As it comes to service desk and they raise a ticket saying is a duplicate record request. It then gets assigned to 2nd line and usually they log into TOAD and sort it out.I was...
View ArticleRE: Toad Automation
Maybe you could use DBMS_SCHEDULER to create a job that runs a query daily (or however often needed) to find duplicates, then deletes them, perhaps with a log table that saves the info deleted and date...
View ArticleRE: Toad Automation
Maybe this is a stupid suggestion, but.... have you considered the simple option of adding a unique constraint to the table, to prevent duplicates from happening? You mention in one of the previous...
View ArticleToad Automation
Hi We have Toad App Designer as part of our TOAD installWe use Toad for Oracle 9.7.2.5 versionMy question is can we automate to run a SQL Script which can be triggered off when an email is received and...
View ArticleRE: Toad Automation
Hi These tickets get logged at service desk with a primary reference number and the duplicates associated with it which then gets passed on to the second line.I don't think it will be feasible to use...
View ArticleRE: Toad Automation
Hi NormThis is a third party system and the duplicates happen at different locations like one person with different names (surname, middlename etc) so there is no way of knowing when a data entry...
View ArticleRE: Toad Automation
Hi NormThis is a third party system and the duplicates happen at different locations like one person with different names (surname, middlename etc) so there is no way of knowing when a data entry...
View ArticleRE: Toad Automation
Ok, thanks. If this were a system I was looking after, I would be raising support calls with the third party to get them to: - fix the database's obvious lack of constraints; - fix the application to...
View ArticleUnable to debug as SYS
HiI have a few procedures in the SYS schema of an Oracle 11.2 instance. When I connect as SYS AS SYSDBA, I cannot start a DBMS Debug session, since the controls are greyed out, and I cannot set any...
View ArticleRE: Toad Automation
I second Norm's suggestions. Another approach is to provide some front end UI to handle the delete/merge of duplicates - either the 3rd party you mention or some in-house developers if you have them.
View Article