About 50 results
Open links in new tab
  1. Oracle Text query with CONTAINS operator and wildcard on stopword …

    Mar 2, 2022 · Why does the Oracle Text CONTAINS query operator not return any results when a wildcard is applied on a stopword? Example: (Those sample values assume that an english stoplist …

  2. oracle 12c - select string that doesn't contain a substring/field ...

    Apr 22, 2016 · TableA.content is varchar2(4000), which was populated from a CLOB value that contains markup and text for a website, paragraphs actually. TableB.keyword contains a string that I want to …

  3. oracle - Check for spaces or zeros in all columns in all tables ...

    Oct 31, 2020 · I have multiple tables in an Oracle schema that have columns with incorrect values: Number columns where the value is zero, instead of null. Text columns where the value is a space, …

  4. How does the Oracle DUAL table work?

    Jan 9, 2011 · All database users have access to DUAL. The DUAL table has one column called DUMMY and one row containing the value X. And the SQL Reference: DUAL is a table automatically created …

  5. oracle - Is there anyway to search PL/SQL reserved words with contains ...

    Oct 20, 2014 · 1 You can't use contains because there is no Oracle Text index on the database source. You could, I suppose, write a query that copied the data from dba_source to a custom table, create …

  6. Oracle SQL - find the character '&' in a string - Database ...

    Aug 29, 2019 · I am intending to do an update (Oracle SQL) for any customer records that includes an ampersand in their name (eg: Joe Bloggs & Co.) to replace this ampersand with the actual word …

  7. Searching Oracle tables for particular values

    Nov 16, 2018 · I want to search all tables, all rows in a particular schema for a particular value. This is so I try to understand where a value is getting persisted. How do I do this in Oracle?

  8. sql server - Query to find rows containing ASCII characters in a given ...

    Oct 23, 2019 · @Solomon Rutzky - The term Non-ASCII was from the original poster that I linked to. I am aware those characters are in fact ASCII. The query I was looking for would select rows with one …

  9. How can I use an array variable inside the IN operator for Oracle SQL?

    I declare a type TYPE arr_type is TABLE of VARCHAR2(11 BYTE); and then I initialize it: MY_array arr_type := arr_type();. I insert some varchars into it, and then attempt to use it with an IN oper...

  10. oracle - Convert a Unix timestamp to a DATETIME in a View - Database ...

    Here is a SQL-Only solution. TO_DATE('1970-01-01','YYYY-MM-DD') + unix_timestamp / 86400 Note that the result is an Oracle DATE value which contains also the TIME. If it does not appear to have …