Are TableSpace names stored in the tables?

Are TableSpace names stored in the tables?
If so, which one?

Tablespaces are stored in the db.
I believe they are in tCtrlOption

Similar Messages

  • Using field names stored in the database in a query

    Hi,
    I'm working on a database that has field names stored in tables. In order to construct a query using the field names stored in the table, normally I'd use dynamic SQL. 
    For example in table1 I have
    Field_Name Value
    Field1
    'Name'
    Field 2
           'Address'
    I want to build a select statement  "SELECT Name, Address, FROM tblCustTable" - if possible not using dynamic SQL.
    Is there a neat way to do this?
    Thanks very much.
    Sad old developer

    No, it is not possible to dynamically include ANY object names (Columns, Tables, Functions, Procedures, etc) in SQL without using Dynamic SQL.
    The closest you can get, if you are choosing from a known set of names, is to use CASE statements:
    SELECT CASE
    WHEN t1.Field1='Name' THEN ct.[Name]
    WHEN t1.Field1='Address' THEN ct.[Address]
    END AS Field1
    FROM tblCustTable ct
    CROSSJOIN table1 t1
    WHERE ...
    However there are several disadvantages to this approach, and the SQL will quickly get very convoluted and difficult to maintain.   Dynamic SQL is much cleaner.
    -Tab Alleman

  • Are java byte[] stored on the heap?

    are java byte[] stored on the heap?
    If not, How can I clear a byte[]?
    For example in C, I could simply put the '\0' at
    the zeroth index.
    Please help.
    hm

    Yes, byte[] objects are stored on the heap. In Java, all objects are stored on the heap, all arrays are objects, and byte[] is an array.
    You seem to be equating byte[] with a C-style string. That kind of thinking will get you into all kinds of trouble in Java. Strings in Java are sequences of Unicode characters. Byte arrays can be converted to and from Strings using encodings such as UTF-8.

  • Table name stored in another table and how to Build the Dynamic Query

    TblMasterTable
    Id
    Unqid
    Tbl_TemplateNameid
    Tbl_Template1
    Unqid
    Field1
    Filed2
    Tbl_Template2
    Unqid
    Field1
    Filed2
    Filed3
    Tbl_Template3
    Unqid
    Field1
    Filed2
    Filed3
    Filed4
    Filed5
    TblMasterTable contains the reference for the table names.
    TblMasterTable contains the data
    1 12     Tbl_Template1
    2 22     Tbl_Template2
    3 12     Tbl_Template1
    4 343 Tbl_Template3
    I want to build the query to retrieve all the Template table records based on the TblmasterTable data for a given id.

    This is possible but you need to understand the performance implications of Dynamic SQL before proceeding with this approach.
    <br>
    use this logic:<br>
    declare sqlstring varchar2(500):=null <br>
    select 'select stuff from '|| tbl_templatenameid into sqlstring from MasterTable where id=someid;<br>
    execute immediate sqlstring;
    <br>
    <br>
    I have really seen very few cases where this approach is justified.
    <br>
    <br>
    Dave<br>
    lehr.servehttp.com

  • Which data are stored in the table GTL0?

    Hi All,
    cuold anyone tell anything about the table GTL0?
    What is it for?
    Thanks

    Hi,
    You mean GLT0... It's the totals of G/L (when new G/L is not activated)
    Regards,
    Eli

  • Capturing Data from forms before it is stored in the table

    Hi...I would like to capture data from a form before the data is stored in the database. that is, i would like to access whatever data is entered into a field right after the user pushes the Insert button. I would like to do some processing on the data and then store it in the table along with the data from the other fields. Is it possible to access it through a bind variable or something? Please tell me how to go about it. Thanks

    Hi,
    You can make of the session variables to access the values. Every field in the form has a corresponding session variable with the name "A_<VARIABLE_NAME>". For example for deptno the session variable will be "A_DEPTNO"
    Here is a sample.
    declare
    flightno number;
    ticketno varchar2(30);
    tdate date;
    persons number;
    blk varchar2(10) := 'DEFAULT';
    begin
    flightno := p_session.get_value_as_varchar2(
    p_block_name => blk,
    p_attribute_name => 'A_FLIGHT_NO');
    ticketno := p_session.get_value_as_varchar2(
    p_block_name => blk,
    p_attribute_name => 'A_TICKET_NO');
    tdate := p_session.get_value_as_date(
    p_block_name => blk,
    p_attribute_name => 'A_TRAVEL_DATE');
    persons := p_session.get_value_as_number(
    p_block_name => blk,
    p_attribute_name => 'A_NOF_PERSONS');
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_FLIGHTNO',
    p_value => to_char(NULL)
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_TICKETNO',
    p_value => to_char(NULL)
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_TRAVEL_DATE',
    p_value => to_char(NULL)
    end;
    In the above example the values of the variables are got into temporary variables and session variabels are set to null.
    Thanks,
    Sharmil

  • How can i display a list of all the names stored in the Mail app?

    When sending an email, the program shows a list of names according to the first and subsequent letters that I type into the To: field. There are times I cannot recall someone's email user name. How can I display a complete list of all the names Mail has stored? I know that I can go to the To: field then type in the letter A, then write down all listings under A, and then repeat for each letter of the alphabet, but there should be an easier method.
    I have perhaps dozens of names in Mail, but only five names in Address Book, so the latter does me no good.

    On the menubar, Mail > Window > Previous Recipients
    Regards,
    Captfred

  • Are old messages stored in a table ?

    are the message send to B1iSN stored in a table ? before they are sent , they are in the SEVT table , but after the SEVT rows are deleted . Can i find the old messages in another table ?
    thanks

    Laurent,
    If they have been deleted ... to my understanding, no, they are not available.
    Eddy

  • Are Workbook settings stored in any table

    Hi Gurus,
    Are the workbook settings stored in any of the tables? There is a requirement for me to collect the information on whether the Refresh automatic has been checked or not for the workbooks.
    It would be great, If any of you can provide me with the details of the same.
    If you require more details, let me know.

    Hi Pl check following tables
    RSRWBINDEX List of binary large objects (Excel workbooks)
    RSRWBINDEXT Titles of binary objects (Excel workbooks)
    RSRWBSTORE Storage for binary large objects (Excel workbooks)
    RSRWBTEMPLATE Assignment of Excel workbooks as personal templates
    RSRWORKBOOK u2018Where-used listu2019 for reports in workbooks
    Check the table RSRWORKBOOK
    Get the ID of the workbook from RSRREPDIR table
    Thanks and regards

  • Object name stored in Database table

    Hi all,
    Lets say I have a Database table that contains the name of the window
    objects that I want to create and display at run-time, how do I go about
    creating that object from the table field wich is a string ?
    Example :
    MenuTable { ItemNo, IsFolder, ParentFolder, PromptMsgNo, ..., WindowName,
    StartMethod }
    Then I use this table to fill in a TreeView or OutlineView using a
    Subclassed DisplayNode that contains
    the WindowName and WindowMethod fields.
    When the user selects a node I want to instantiate an object of the type
    indicated in WindowName and
    do a start task of the method indicated by WindowMethod for WindowName.
    How could I code the following lines ? :
    theWindow : "--> Content of CurrentNode.WindowName" = new;
    start task theWindow."--> Content of CurrentNode.WindowMethod";
    Goal :
    Be able to customize the menu system without customizing code for each
    client.
    Any idea on alternative methodes to reach the the goal would also be
    appreciated.
    Thanks in advance.
    Christian Boult ([email protected])
    Systemes Influatec inc.

    Hi Christian,
    When the user selects a node I want to instantiate an object of the type
    indicated in WindowName and
    do a start task of the method indicated by WindowMethod for WindowName.
    How could I code the following lines ? :
    theWindow : "--> Content of CurrentNode.WindowName" = new;
    start task theWindow."--> Content of CurrentNode.WindowMethod";---<<<---
    cl : integer = 0;
    aLib : Library = task.part.findLibrary(projectName = 'MeineTestKlassen',
    distributionID = 'test',
    compatibilityLevel = cl,
    libraryName = 'meinetes');
    aType : ClassType;
    myObject : Object;
    // myObject : meinNeuesObjektClassTypeName;
    aType = aLib.FindClass(className = meinNeuesObjektClassTypeName);
    myObject = aType.InstanceAlloc();
    myObject = (object)(meinNeuerStream.ReadSerialized());
    --->>>---
    This code is part of a method that stores objects persistent into a Database
    and then restores and instantiates them.
    You'll have to put the Name of the Class your Object should be of in the
    "meinNeuesObjektClassTypeName" Attribute. Then, aType.InstanceAlloc()
    instantitates an Object of the given Class.
    Please note that, due to the diefferences between the declared and the
    runtime class type (Object vs. whatever class your object is of) you'll have
    to cast your Object to the correct class. (I used to create a virtual
    Superclass for this, which contains the method(s) to be called and the
    needed Attributes and then cast all created objects to that superclass).
    (You might also use a Template for this and implement that in all classes
    that need it -- but I didn't try it yet, so I don't know if it really
    works).
    Hope that helps...
    ralf
    /* Ralf Folkerts
    Geschaeft: [email protected]
    Privat: [email protected] */
    -----Urspr&uuml;ngliche Nachricht-----
    Von: Christian Boult <[email protected]>
    An: Forte Maling list <[email protected]>
    Datum: Dienstag, 31. M&auml;rz 1998 04:59
    Betreff: Object name stored in Database table

  • Update the functional area (AUFK-FUNC_AREA) directly in the table AUFK

    Hello,
    The OSS note 150959 gives a report, which directly updates the table field AUFK-PRCTR (profit center). Have you ever tried the same thing with the Functional Area (I am afraid to cause database incoherencies, if I do this) ?
    We have to do this both for production and maintenance orders.
    Thank's a lot for your answer.
    Best regards,
    Holger

    Hello Rajesha,
    We have to make a mass update of all  production and maintenance orders in our system.
    So we have to write a program, which is doing this.
    In order to avoid the direct update of the table AUFK, we will write a batch input.
    Best regards,
    Holger

  • Need to know the program names to which the table is used

    Hi,
    I am using a table <table1>.
    For Example : MARA table. I need to know in what are all the program's the MARA table is used .
    Please let me know in which tcode can I know the details.
    Thanks,
    Karthik

    hi ,
    use program 
    RS_ABAP_SOURCE_SCAN
    passs 'MARA' IN search field 
    and  program name field  '*'
    will give all  program .
    regards
    Deepak.

  • Where are my pictures stored on the hard drive when I import them into Aperture?

    I imported pictures into Aperature under the project name Christmas 2012. When I went into Finder to see where the pictures were actually placed on my hard disk, the folder didn't show up anywhere. These are new photos that I added to my hard drive.
    I then thought I would do a file search on some of the photos. One picture's file name was IMG_2260. When I searched All My Files for this file, it produced two different photos with the exact same file name IMG_2260!
    Now I'm really confused! Any help would be appreciated.

    . It just seems strange to me to not be able to find the actual photos with Finder.
    The actual photos do not exist as image files, until you export them. The only images that do exist are the originals that you import into Aperture. When you adjust images, enhance them, crop them, Aperture will only store the command, but not actually create the edited version.
    That has three advantages:
    Aperture saves space, because only the original image is stored.
    Aperture can easily undo any operation and you have a lossless workflow.
    Many adjustments can be accumulated into one operation and done very precisely, because the image need not to be rendered to 8Bit or 16 Bit versions in between. Only the final version needs to be encoded as image file.
    So, since the edited images do only exist in a state of limbo, you do not see them in the library as images.
    Regards
    Léonie
    Added:
    When I searched All My Files for this file, it produced two different photos with the exact same file name IMG_2260!
    When you search for the originals with Spotlight or file search from the Finder, you may find the originals and previews of edited versions, that Aperture creates to share with the Media Browser. In addition to exporting the images, you can access them using the Media Browser from all applications that are compatible with iLife: Mail, Pages, Keynote, iWeb, ...

  • How can I purge screen names stored in the browser?

    When I go to a website and start to type my screen name, all the screen names I have used starting with that letter are suggested in a drop-down box. How can I get rid of these? Sometimes they were typed in error, sometimes they are out of date. I'd like to get rid of them, but don't know how.

    1. You can delete for Form and Search History to clear all that saved data. <br />
    2. You can use the '''Delete''' key or '''{Ctrl + Delete}''' to clear an individual item of form history when it is highlighted.

  • Where are FCPX fonts stored on the mac?

    Final Cut X seems to store its fonts somewhere other than the normal system library fonts folder. Or it finds other fonts on the computer that are in other places than that folder.
    I am trying to find where a font is located on my computer that seems to only be in FCPX. It doesn't show up in the fonts folder, doesn't show up when I search with spotlight, and doesn't show up in any other programs, even Word or Pages. Any ideas for where I should look?
    The font is called Proxima Nova.
    I found this through a Google search:
    "These fonts are stored in Final Cut Pro or Motion in the following subfolder: Contents / Frameworks / TextFramework.framework / Versions / A / Resources / Fonts. To get inside Final Cut Pro or Motion, right- or control-click the application and choose Show Package Contents from the context menu."
    But those folders on my computer are empty. Where my font at?
    FCPX 10.1.4
    OSX 10.10.3

    Do you like that font?

Maybe you are looking for

  • HTTP 500 error when opening "App Server Control" (EM) in OAS 10.1.3.5.0

    Hi, I have some (but not much) experience with OAS and am currently stuck. So hope to find someone who can help me further here. When i open Oracle Application Server Control from the SOA Suite 10.1.3.5.0 home page i get most of the times an HTTP 500

  • WinCVS 1.3.17 and JDeveloper 9.0.3

    I tried to activate source control CVS inside JDeveloper. In the tools menu I activated CVS, but I got always the message "The CVS client is not installed or not located in your system environment path". I'm working with a Windows2000 machine. WinCVS

  • Open protected document without sharing passwords

    Good morning, i need to share pdf documents that must be password protected; for security reasons and for permission rights, I cannot share the passwords to all users, therefore I need to find some way to open password protected pdf files without sha

  • Intermittent oracle errors with case-insensitive searches

    Hi I have a table with several columns, two of them are indexed with oracle text. When I ask queries containing "CONTAINS"-clauses against these columns everything works great. However I have a few other columns in table that I want to run case-insen

  • Training & Support Link not working

    Hi i have a 30-day trial version of Siebel CRM On Demand. When i click on the Trial & Support link on my version it simply returns a blank page??? Can someone tell me how this can be fixed? Thanks, Saket