Can any body let me know the query?

Hi
I want all the table names and all the column names from entire database which is having some pattern
Ex:i want table name and corresponding column names where the column data is having substring 'oracle'
if i have 'oracle' as substring data in 2 columns of 3 tables in my database then it should give me table name and corresponding column names in that table
Thanks in advance...

yes, i have tried with the following block
DECLARE
V_CURSOR VARCHAR2(4000);
V_TABLE_NAME VARCHAR2(4000);
V_COLUMN_NAME VARCHAR2(4000);
CURSOR GET_TABLE IS SELECT TABLE_NAME FROM user_tables;
CURSOR GET_COLUMN IS
SELECT COLUMN_NAME FROM USER_TAB_COLUMNS
WHERE TABLE_NAME IN (SELECT TABLE_NAME FROM USER_TABLES) AND DATA_TYPE='VARCHAR2';
BEGIN
FOR TAB IN GET_TABLE
LOOP
FOR COL IN GET_COLUMN
LOOP
EXECUTE IMMEDIATE 'SELECT '||TAB.TABLE_NAME||','||COL.COLUMN_NAME||' FROM '||TAB||','||COL||' WHERE '||COL.COLUMN_NAME||' LIKE '||'"%oracle%"'||'INTO '||V_TABLE_NAME||','||V_COLUMN_NAME;
DBMS_OUTPUT.PUT_LINE(V_TABLE_NAME||' '||V_COLUMN_NAME);
END LOOP;
END LOOP;
END;
But unable to proceed
please give me some suggessions to proceed with it....

Similar Messages

  • Help needed I updated my ipad2 with iOS5 but few of my dashbaords are not working now can any one let me know how to downgrade the OS

    Help needed I updated my ipad2 with iOS5 but few of my dashbaords (HTML5) are not working now ,can any one let me know how to downgrade the OS as we have a meeting coming up .. its urgent

    Downgrading the iOS is not supported. If you are using Safari this try clearing its cache via Settings > Safari.
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Can anyone please let me know the differences between EDW and BI 7 if any

    Can anyone please let me know the differences between EDW and BI 7 if any.

    hi,
    As such their is no diff  between the to
    The Enterprise Data Warehouse (EDW) is a service offered by the Data Services Department of the Information Services and Technology Division.  EDW consolidates data from multiple sources in support of campus wide decision making and related information needs such as reporting, analysis, and planning.
    The vision for the EDW is to provide information that is secure, accurate, timely, consistent, integrated, appropriately detailed, well-organized, and easy to obtain so that people throughout the campus -- staff, faculty, researchers, and executive-level administrators -- will be better able to assess their needs, set priorities, understand the impact of change, and fulfill their programmatic responsibilities more efficiently.
    The major components of the existing Enterprise Data Warehouse are:
      BAIRS Financials
    BAIRS HRMS
    BIS
    Legacy BIS
    Student Data Warehouse Pilot 
    AND BI 7 is the latest version of the EDW which is currently in used in full fledged everywhere with lots of added functionality.
    Assign points if helpful.
    Regards,
    Amit

  • My Imac is ejecting every disk inserted in it, I cannot access the disks, can any body help me troubleshoot the problem. I am using snow leopard.

    My Imac is ejecting every disk inserted in it, I cannot access the disks, can any body help me troubleshoot the problem. I am using snow leopard.

    Try resetting the SMC Intel-based Macs: Resetting the System Management Controller (SMC) - Apple Support
    and PRAM How to Reset NVRAM on your Mac - Apple Support
    If those don't help you can try a cleaning disc or a quick shot of compressed air. Chances are that your drive has failed, join the club it's not all that uncommon. You can either have it replaced or purchase an inexpensive external drive. Don't buy the cute little Apple USB Superdrive, it won't work on macs with internal drives working or not.

  • My Imac is ejecting every disk inserted in it, I cannot access the disks, can any body help me troubleshoot the problem.

    My Imac is ejecting every disk inserted in it, I cannot access the disks, can any body help me troubleshoot the problem

    The frist thing to try is a drive-n disk. They are cheap (US$5-15) and easy to use. Many unresponsive drives, even ones declared "dead" by an Apple tech, have returned to service after a cleaning.
    Check with home entertainment specialty shops, electronic superstores and office supply outlets that sell computer accessories.

  • Can any one let me know how to  find out current internet explorer version

    Can any one let me know how to find out current internet explorer version

    Don;t use annoyed repeated words. Try to explain exactly what is your problem.
    <script LANGUAGE="JavaScript">
    document.write("Your browser Name: <B>" + navigator.appName + "</B>.<br>")
    //Detect IE Version Only
    if (navigator.appVersion.indexOf("MSIE")!=-1){
    var temp=navigator.appVersion.split("MSIE")
    var version=parseFloat(temp[1])
    document.write(" Your Browser version: <B>" + version + "</B>.")
    </script>

  • Hai sir any body please answer to the query to which i am posting (please)

    hi
    any body please to the query which iam posting. i could not what exactly happens i was thinking so much even then i could not get the answer.
    Q) When we use the fix on dense or sparse on which dimension performance is good? How can you justify that?
    (IN PDF it is written this way)
    When you use the FIX command only on a dense dimension, Analytic Services retrieves the
    Entire block that contains the required value or values for the member or members that you
    Specify. Thus, I/O is not affected, and the calculation performance time is improved.
    When you use the FIX command on a sparse dimension, Analytic Services retrieves the block
    for the specified sparse dimension member or members. Thus, I/O may be greatly reduced.
    I cannot justify (visualize the above answer can any body help me the way it is going to happen from disk to the memory in the point of the performance) please elaborate what exact process takes.

    Hi,
    In Essbase (aka Analytic Services) block storage option (BSO) databases, the data block is the basic unit of I/O. A block contains cells that represent the intersections of stored members from dense dimensions. Unique data blocks are created for the existence of sparse dimension combinations (based on data loads or calculations).
    In a calc script, a FIX on a dense member will require the calculator to perform I/O on ALL the existing data blocks in the database. This may be logically necessary in some cases but it is not efficient in terms of minimizing I/O. Worse yet, a series of dense FIX statements (not nested but one after the other) will cause multiple, full passes on all data blocks. Conversely, a FIX on a sparse member will only require I/O on the data blocks related to that sparse member via the index. This is where you get I/O efficiency.
    To illustrate this in a simplistic example, let's say you have 1 million data blocks. One of the dense dimensions is Period with twelve months rolling up to quarters and total year. One of the sparse dimensions is Scenario with ten distinct scenarios (Actual, Budget, Forecast, etc.) and a Label Only setting at the top of the dimension (i.e., on Scenario at Gen 1). Consider the I/O differences on each FIX example to follow...
    FIX(Jan)
    ... any calc action here must perform I/O on all 1 million blocks
    ENDFIX
    FIX(Feb)
    ... any calc action here must perform I/O on all 1 million blocks AGAIN if written in sequence like this after the Jan FIX above
    ENDFIX
    However...
    FIX(Budget)
    ... any calc action here must perform I/O on only 1/10th of the database or 100,000 of the blocks
    ENDFIX
    Now these examples oversimplify some things to make the basic point about which you have asked a question. I hope this helps. Please post any follow-up questions.
    Good luck, Darrell Barr

  • Can any one let me know

    Hi
    This is with respect to P-Card.
    I am actually confused with G/L account funda.
    I understand that the G/L account and Document type is created in backend to configure the PCARD. The Card company is created as vendor and the newly created G/L account and document type is assigned to it in the backend.
    But how can I assing one new G/L account and document type to the PCARD functionality.
    I am not understanding this concept. Can any one tell me what exactly needs to be done in SRM with respect to G/L account and document type.
    Thnaks
    Jagan

    Hi
    <u>Here are the detailed steps for R/3 as well as the SRM cofiguarion for P-Card scenario.
    <b>In the SRM system</b> - SPRO Transaction, Define Number ranges
    <b>1) You create number ranges</b>
    <b>2) Define Card Company</b>
    You create Company  Logical_System and Description
    Say,
    AMEX      R3_LOGICAL_SYSTEM       R/3 back-end logical system
    <b>3) Allocate Company code</b>
    In this step, you define the details on a card company for Financial Accounting for each company code. This includes:
    ->Vendor
    Each company must have their own vendor master record in the backend R/3 System.
    -> Clearing account
    -> Document type
    You define with which document type the system makes postings to the G/L accounts in Financial Accounting. SAP recommends creating a separate document type for these invoices in the backend system.
    Say,
    PCard_Company        R/3_Company_code      R/3_GL_ACCOUNT     R/3_VENDOR_BANK_ID      R/3_DOC_TYPE     R/3_Tax_Account_P-Card_Tax_posting
    AMEX     1111     90100     100108     ZA     91500
    Similarly, maintain new entries for each new R/3 company code and save it.
    <b>R/3 system config settings</b>
    In R/3 system, create this new Document type (say "ZA" in our case)
    SPRO Path ->
    Financial Accounting -> Accounts Receivable and Accounts Payable -> Business Transactions -> Outgoing Invoices/Credit Memos -> Carry Out and Check Document settings -> Define Document types
    Maintain new document type (Say ZA)
    Document type  - ZA
    Description - (For PCard in SRM)
    Properties tab
    Number range -> say 99
    Reverse Doc. Type -> ZA
    Account types allowed (Enable/ tick the following)
    X  Assets
    X Vendor
    X Material
    X G/L account
    </u>
    Let me know incase you face any issues.
    Hope this will help.
    Please reward suitable points, incase it suits your requirements.
    Regards
    - Atul

  • Can you please let me know the answers!!

    Hi All, 1) I want to know the purpose of placing a Filter Transformation right in front of Target instance with TRUE as filter condition. Is there any specific reason for that ? 2) If Default value is defined at column level in DB ...is it required to link the corresponding defalut value ports at IPC level ? 3) What will happen if rows are marked for update at session(treat src rows as update) level when target is a file writer.Does the update functionality works as expected ?   Regards,Vasu

    Hi All, 1) I want to know the purpose of placing a Filter Transformation right in front of Target instance with TRUE as filter condition. Is there any specific reason for that ? 2) If Default value is defined at column level in DB ...is it required to link the corresponding defalut value ports at IPC level ? 3) What will happen if rows are marked for update at session(treat src rows as update) level when target is a file writer.Does the update functionality works as expected ?   Regards,Vasu

  • HT5570 Can any one let me know how to setup new security question answers required for purchases of which the previous answers been forgotten.

    I am trying to do some purchases from my account balance of USD 50.00. But not able to do it as I have forgot the answers for security questions. Thus, I have been trying to setup new answers for that, but could not find any way to do so. Please help me on this.

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (118301)

  • Can any One Let me know How to connect threw Console in 9.3

    Hai,
    I have Installed essbase, anlytic Server and services which downloaded from the Oracle site. I am able to run essbase Server. and i am not able to connect threw the Console.. I am not able to create the User & Password for the console login.( i.e. Server name(host), Username, Password). i am new to this and facing this problem. Can anyone Help me in this.

    Hi,
    Try this one-
    1) Start the analytic services(essbase server),Analytic Admin server.
    2) Open the admin console.
    3) Give the username-admin and password- password( this is default one) and host name.
    Hope it will help you.
    Thanks & Regards,
    Mohit

  • Can any body plz tell me the solution for IDOC Import

    When iam trying to import the IDOC --> PREQCR.PREQCR02 to my imported objects in Integration Repository by using Application Server, system number and user name and password, the following error iam getting.                                                                               
    PREQCR.PREQCR02: Error
                                         + Error: IDoc type PREQCR02 contains errors (unable to read segments)
    Import failed with 1 error.

    Hi Abullah,
    R u trying this on R/3 5.0,
    try importing PREQCR02 in R/3 4.7, It gets imported successfully..
    Or else contact u r Basis person if u want to use R/3 5.0
    Regards,
    Sridhar

  • Can any body help me by sending the config settings of delivery scheduling.

    hi,
    sap gurus,
    in my project there is logistics execution module.  here my concern is they are depending on district
    and regions for fixing the frieght and all, so we have to schedule the deliveries to save the damarages
    and warphage to the client.
    can any body send me how the delivery scheduling and transportation scheduling cinfigured and
    if there is any other than this.
    plz let me know and help me on this.
    regards,
    balaji.t

    Hi Balaji..
    Just see weather this is helpful to your requirement...
    Backward scheduling is the calculation of deadline dates: the arrival time at the customer site is calculated as the earliest possible goods receipt time at the customers unloading point on the requested delivery date. All four of the delivery and transportation scheduling lead times are subtracted from the customeru2019s requested delivery date to determine if this date can be met.
    The transit time, loading time, and pick/pack time are subtracted from the customeru2019s requested delivery date to calculate the required material availability date.
    The system calculates backward scheduling as follows:
    Requested delivery date minus transit time = Goods issue date
    Goods issue date minus loading time = Loading date
    Loading date minus transportation lead time = Transportation scheduling date
    Loading date minus pick/pack time = Material availability date
    By default, the system will calculate delivery dates the closest day, taking into consideration the working days of the shipping point and a rounding profile. In this case the system assumes a 24 hour work day and lead times can be entered in days up to 2 decimal points. This is referred to as daily scheduling.
    Precise scheduling calculated down to the day, hour and minute is supported. This allows the scheduling of a delivery within a single day. It is activated by maintaining the working hours for a particular shipping point.
    Backward scheduling is always carried out first. If the material availability date or transportation scheduling date is calculated to be in the past, the system must then use forward scheduling.
    Forward scheduling is also done if no product is available on the material availability date calculated by backward scheduling. The system does an availability check to determine the first possible date when product will be available. This new material availability date forms the starting point for scheduling the remaining activities. The loading time, pick/pack time, transit time, and transportation lead time are added to the new material availability date to calculate the confirmed delivery date.
    Thanks,
    Safeer Rahman

  • Can any body give the solutions for frequently asked questions

    can any body help me in the following questions.
    1 .  what is a conversion routine .
    2.  how do you create fonts and colors in the sap scripts.
    3. how do u upload a logo in a smart form .
    4. can u  get both landscape and portrait in same layout , if yes how .
    5. what is the functional module used to upload excel file .
    6. what is the functional module used to get longtext in the report for purchase orders and sales orders
    7. what is the even alternative to initialization where authorizations are declared to run a report.
    8. how the exceptions with in function module rise when they are uncommented.
    9. how do u translate the report to other than system language.
    10. how to debug a sf without putting a stop point.
    11. what is the procedure to handle the data upload using table control in bdc.
    12. what is the procedure to access the standard text into scripts.
    13. what is the procedure to send the smart forms as a mail .
    14. in bdc how can u handle the table controls .
    15. there are 10000 records in a flat file and first record contains error , if I upload to the bdc program , and run in bdc session method what will happen.
    16. how can u attach the transport request for scripts .
    17. tools to transfer requests to quality control or production system.
    thanks in advance.

    Hi,
    Pls check service.sap.com/certification or your local education center at www.sap.com/education
    Eddy
    PS. Reward the useful answers and you will get <a href="http:///people/baris.buyuktanir2/blog/2007/04/04/point-for-points-reward-yourself">one point</a> yourself!

  • Battery , time , signal strength bar is not getting displayed in home screen , these will be displayed only when i click on any app. Can u let me know the setting change ?

    Battery , time , signal strength bar is not getting displayed in home screen , these will be displayed only when i click on any app. Can u let me know the setting change ?

    Did you check the Zoom setting?
    Have you tried a reset (reboot)? Hold HOME and SLEEP until an Apple logo appears.
    If it isn't Zoom and a reboot doesn't help try Settings/General/Reset - Reset all settings

Maybe you are looking for

  • Why can't I connect to my Mifi

    I have a Verizon Mifi 4G LTE and I can connect to my Powerbook (which is running on system 10.6.4)  BUT I CAN'T CONNECT TO MY iMAC (which is running on system 10.5.8.  When I try to connect, it "times out".  Any ideas?

  • Creating Authorization groups for material types

    Hi All, I have a requirement to create Authorization groups for different material types we have in our company. Basically these are intended to restric the users from accessing the material master. Different material types needs to be assigned to di

  • Skype not working on MacBook Air

    I use Skype on my iMac without any problems; however it will not work on my new MacBook Air. I have tried everything suggested in the forum and nothing works. I get a message "Sign In Error...Wrong Password". However, this is the correct Skype Name a

  • Yosemite update: how to retrieve my mail ?

    I have just installed Yosemite shaving my macbook pro (2010). Probably the numerous updates followed over time had slowed down my Mac and it was impossible to work. In order to avoid problems of conflict I simply made a backup of all the folders that

  • Remove Oracle Multimedia

    http://download.oracle.com/docs/cd/E11882_01/appdev.112/e10777/ap_instl_upgrd.htm#BHAHIBDE says to run @<ORACLE_HOME>/rdbms/admin/catcmprm.sql ORDIM catcmprm.sql does not exist in my fresh 11.2.0 install.