Record type file invocation?

How to register your application to be able to be opened for a specific file type (extension)?

Never mind. Found.

Tags: BlackBerry Developers

Similar Questions

  • How can I reset Library Center of track records and files

    Original title: Media Center in Vista

    I had set up to monitor records, but subsequently changed his mind.  I put stop monitoring the folders that I didn't but the folders and files are always in the library.  How can I reset Library Center of track records and files.  In other words delete the reference to the files and now no watched folders.

    Hi Rose945,

    Try to rebuild the Media Center data store and check if it helps to solve the problem. To do this, follow these steps:

    (a) exit any running instance of Windows Media Center.

    (b) delete the mediaCenterDataStore.db file. By default, this file is located in the following location:

    %SystemDrive%\ProgramData\Microsoft\eHome\mediaCenterDataStore.DB

    To remove the file, follow these steps:

    (a) click on start, then run.

    (b) in the Open box, type run and then click OK

    (c) If you are prompted for an administrator password or for confirmation, type the password, or click on continue.

    (d) in the Open box, type %systemdrive%\programdata\microsoft\ehome and then click OK.

    (e) in the details pane, right-click right mediacenterdatastore.db and then click on remove.

    (f) click Yes to confirm that you want to move the Mediacenterdatastore.db file to the trash.

    Restart Windows media center, then check

  • XMLTYPE with record type

    Hi friends,

    Is it possible to use XMLTYPE with record types?

    For example, in the following code I expect output voltage

    < TY_EMP > < > 1001 EMPNO < / EMPNO > < ADAMS ENAME > < / ENAME > < SAL > 5000 < / SAL > < TASK MANAGER > < / JOB > < / TY_EMP >

    The code is...

    DECLARE

    Ty_emp RECORD TYPE IS

    (

    EmpNo INTEGER

    , ename VARCHAR2 (100)

    NUMBER of sal

    , VARCHAR2 (100) employment

    );

    r_emp ty_emp;

    BEGIN

    r_emp.EmpNo: = 1001;

    r_emp. Ename: = "Adams";

    r_emp. SAL: = 5000;

    r_emp.job: = "MANAGER";

    -This line gives the error.

    dbms_output.put_line (XmlType (r_emp). GETSTRINGVAL()); -Here, I don't want to talk about all the fields in the record. I just need to specify the name of the record.

    END;

    p.s. to use object types to generate XML data...

    SQL > ed
    A written file afiedt.buf

    1 TYPE to CREATE or REPLACE ty_emp () AS OBJECT
    2 empno INTEGER
    3, ename VARCHAR2 (100)
    4, NUMBER of sal
    5, job VARCHAR2 (100)
    6*   );
    SQL > /.

    Type of creation.

    SQL > ed
    A written file afiedt.buf

    1 DECLARE
    2 r_emp ty_emp: = new ty_emp (null, null, null, null);
    3 BEGIN
    4 r_emp.empno: = 1001;
    r_emp.ename 5: = "Adams";
    6 r_emp.sal: = 5000;
    7 r_emp.job: = "MANAGER";
    8 dbms_output.put_line (XMLTYPE (r_emp) .getstringval ());
    9 * END;
    SQL > /.
    1001 Adams 5000 MANAGER

    PL/SQL procedure successfully completed.

    SQL >

  • Return the record type


    Hello

    I have a requirement of the company, where I need to return a record type (OUT parameter) for environment call based on the given input value.

    Suppose that if the value is correct and corresponding record is found in the table then the return values for this key entry. If matching record is found, then return the exception to the calling environment.

    To do this, I created an example of test table and populated records.

    create table plch_test(dept_id number,dept_name varchar2(50),cost_centre number);
    insert into plch_test values(10,'SALES',1010);
    insert into plch_test values(20,'FINANCE',2010);
    insert into plch_test values(30,'MKTG',3010);
    
     
    SQL> select * from plch_test;
       DEPT_ID DEPT_NAME                                          COST_CENTRE
    ---------- -------------------------------------------------- -----------
            10 SALES                                                     1010
            20 FINANCE                                                   2010
            30 MKTG                                                      3010
    
     
     
    

    I wrote a simple block and gave a valid key dept_id (10 in this case) to display costcentre for this dept_id and dept_name I said tow types of records, one for valid record and another exception

    
    

    SQL> DECLARE 
      2  TYPE rec_dept IS RECORD(dept_name varchar2(50),cc number);
      3  l_rec_dept rec_dept;
      4  TYPE rec_exception IS RECORD(err_code number,error_message varchar2(300));
      5  l_rec_exception rec_exception;
      6  BEGIN
      7  SELECT dept_name,cost_centre
      8  INTO l_rec_dept
      9  FROM plch_test
     10  where dept_id=10;
     11  dbms_output.put_line('DEPT_NAME'||' '||l_rec_dept.dept_name||' '||'COSTCENTRE'||' '||l_rec_dept.cc);
     12  EXCEPTION WHEN NO_DATA_FOUND THEN
     13  l_rec_exception.err_code:=sqlcode;
     14  l_rec_exception.error_message:=sqlerrm;
     15  dbms_output.put_line(l_rec_exception.err_code||' '||l_rec_exception.error_message);
     16  END;
     17  .
    SQL> /
    DEPT_NAME SALES COSTCENTRE 1010
    PL/SQL procedure successfully completed.
    SQL> 
    
     
    

    Now for invalid dept_id and expose the message by using exception record type I stated.

    SQL> ed
    Wrote file afiedt.buf
      1  DECLARE
      2  TYPE rec_dept IS RECORD(dept_name varchar2(50),cc number);
      3  l_rec_dept rec_dept;
      4  TYPE rec_exception IS RECORD(err_code number,error_message varchar2(300));
      5  l_rec_exception rec_exception;
      6  BEGIN
      7  SELECT dept_name,cost_centre
      8  INTO l_rec_dept
      9  FROM plch_test
     10  where dept_id=40; --Invalid --data is not present
     11  dbms_output.put_line('DEPT_NAME'||' '||l_rec_dept.dept_name||' '||'COSTCENTRE'||' '||l_rec_dept.cc);
     12  EXCEPTION WHEN NO_DATA_FOUND THEN
     13  l_rec_exception.err_code:=sqlcode;
     14  l_rec_exception.error_message:=sqlerrm;
     15  dbms_output.put_line(l_rec_exception.err_code||' '||l_rec_exception.error_message);
     16* END;
    SQL> /
    100 ORA-01403: no data found
    PL/SQL procedure successfully completed.
    
    

    Now as you can see I need to include this point in a procedure with an input parameter and output must be a record types which will return

    rec_dept if it becomes a key input valid or an exception if she meets a key not valid.

    
    CREATE PROCEDURE test_prc IS(p_in_dept_id IN plch_test.dept_id,p_output ??????
    DECLARE 
    TYPE rec_dept IS RECORD(dept_name varchar2(50),cc number);
    l_rec_dept rec_dept;
    TYPE rec_exception IS RECORD(err_code number,error_message varchar2(300));
    l_rec_exception rec_exception;
    BEGIN
    BEGIN
    SELECT dept_name,cost_centre
    INTO l_rec_dept
    FROM plch_test
    where dept_id=p_ind_dept_id;
    RETURN l_rec_dept;
    EXCEPTION WHEN NO_DATA_FOUND THEN
    l_rec_exception.err_code:=sqlcode;
    l_rec_exception.error_message:=sqlerrm;
    RETURN l_rec_exception;
    END;
    dbms_output.put_line('DEPT_NAME'||' '||l_rec_dept.dept_name||' '||'COSTCENTRE'||' '||l_rec_dept.cc);
    END;
    

    Hope that the explanation above help in imposes the requirement

    Kind regards

    Claudy kotekal

    Return a record which can mean two things is complicated; I'm not an experienced myself pl/sql developer, but this looks like a craft.

    The idea of exceptions under Sir Thomas of Kyte, is that any treatment must be stopped; You should RAISE an exception to the appellant so that he can figure out what to do with it.  What you are saying, this is an exception, but is not a little, cos it's okay, I'll just keep but I will go back to the appellant in any way, but the appellant shall include this registration type is - would it be a record representing a row of the table, or it might be an exception... yuck.

    (a) is it really an exception

    (b) what do you do with it? You he could log into a table, you could write to a file, you can display an error message on the screen

    But really, it's weird to want to pass an exception as return value.

    These are all considerations of design, not really anything to do with the pl/sql language in itself.

    But hard, if you send a record type a successful being found, registration-based stick to it and don't use it to return a record; do not try to do double duty with her flipping something else.  Just save the message put in a table, or print it to the console, or what you want to do with; but as I said, the most important decision is, is this really an exception. And is based on the data model and the expectations of cleanliness of the data etc.

    Think about how you call built-in functions. If you send garbage to a built-in function it does not return successfully, leaving you to figure out whether he succeeded or not by inspecting the return value; It goes kaboom, something bad happened.  That's what your function should do if something bad happens, that is to say, if you get an exception, it should probably go kaboom.

  • Record type.  Display the entire register with DBMS_output.putline

    Hello. I have the following code, I've played with to better understand the Collections. I have a 'how' question. Is there a way to dbms_output.putline a complete file or I have to name each column as I began to do in the code below?

    If there is no single statement to display a record, is it a good way to dynamically loop through the registration and use of dbms_output.putline for each output column without having to name each column explicitly?

    Thanks much for any help.
    DECLARE
    pc_info_rec performance_clusters%rowtype;
    
    CURSOR C1 IS 
         SELECT * 
         INTO pc_info_rec
         FROM performance_clusters 
         WHERE rownum < 11; 
    
    BEGIN
         OPEN C1;
         LOOP
         FETCH C1 INTO pc_info_rec;
         EXIT WHEN C1%NOTFOUND;
    
                    -- Currently have to name each column in the record, but would prefer a simpler way to output the entire record
              DBMS_OUTPUT.PUT_LINE (pc_info_rec.pc_code||', '||pc_info_rec.zip3);
    
    
         END LOOP;
         CLOSE C1;
    END; 
    /

    You can not 'loop' in the columns folder. You must list the columns individually. As I already mentioned, if you need display case in many places, you can create a procedure (you don't need a package as I suggested earlier):

    SQL> create or replace
      2    procedure print_dept_rec(
      3                             p_rec dept%rowtype
      4                            )
      5      is
      6      begin
      7          dbms_output.put_line(p_rec.deptno || ', ' || p_rec.dname || ', ' || p_rec.loc);
      8  end;
      9  /
    
    Procedure created.
    
    SQL> set serveroutput on
    SQL> DECLARE
      2      v_rec dept%rowtype;
      3      CURSOR C1 IS SELECT  *
      4              FROM  dept;
      5  BEGIN
      6      OPEN C1;
      7      LOOP
      8        FETCH C1 INTO v_rec;
      9        EXIT WHEN C1%NOTFOUND;
     10        print_dept_rec(v_rec);
     11      END LOOP;
     12      CLOSE C1;
     13  END;
     14  /
    10, ACCOUNTING, NEW YORK
    20, RESEARCH, DALLAS
    30, SALES, CHICAGO
    40, OPERATIONS, BOSTON
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    

    Obviously, you will need to create a procedure for each record type.

    SY.

  • Error in passing in the RECORD type in the API

    Gurus,

    Get the following error when I try and change from one type of RECORD in an API. I am in passage correctly?

    Any help is appreciated.

    Thank you
    -Scott



    Here is my error:

    fnd_descr_flex_col_usage_pkg.load_row
    *
    ERROR at line 21:
    ORA-06550: line 21, column 4:
    PLS-00306: wrong number or types of arguments in the call to 'LOAD_ROW '.
    ORA-06550: line 21, column 4:
    PL/SQL: Statement ignored



    Here is my anon block:

    declare
    Who_type RECORD TYPE IS
    (
    created_by NUMBER,
    CREATION_DATE DATE,
    last_updated_by NUMBER,
    last_update_date DATE,
    last_update_login NUMBER
    );
    v_who_type who_type;
    date of v_sysdate;
    Start
    Select sysdate
    in v_sysdate
    Double;
    v_who_type.created_by: = 0;
    v_who_type. CREATION_DATE: = v_sysdate;
    v_who_type.last_updated_by: = 0;
    v_who_type.last_update_date: = v_sysdate;
    v_who_type.last_update_login: = 0;
    fnd_descr_flex_col_usage_pkg.load_row
    (x_application_short_name = > 'SPL',)
    x_descriptive_flexfield_name = > 'HR_LOCATIONS ',.
    x_descriptive_flex_context_cod = > '441',.
    x_application_column_name = > 'ATTRIBUTE5 ',.
    x_who = > v_who_type,
    x_end_user_column_name = > "District."
    x_column_seq_num = > 10,
    x_enabled_flag = > 'Y ',.
    x_required_flag = > 'n',.
    x_security_enabled_flag = > 'n',.
    x_display_flag = > 'Y ',.
    x_display_size = > 50,
    x_maximum_description_len = > 50,
    x_concatenation_description_le = > 25,
    x_flex_value_set_name = > 50 characters,
    x_range_code = > ",
    x_default_type = > ",
    x_default_value = > ",
    x_runtime_property_function = > ",
    x_srw_param = > ",
    x_form_left_prompt = > "District."
    x_form_above_prompt = > "District."
    x_description = > ");

    ...

    sreese wrote:
    Tubby,

    Im not asking for your help with this error. I want to define my own FILE type that mimics the call package so I can spend in my own variables.

    Pretty sure I've described previously, there was a specific question with the answer that you do not understand?

    >

    The problem with this type of recording is that it contains all the 'who' columns that the application requires. When it is called from a package within the schema, the package has no difficulty arising from these data. When you call the package from an anon block, I have to pull my own values.

    You did before declaring a LOCAL record type, then you need to reference to the PACKAGE of type folder, as I showed you... it makes you EF values even as you were in your first post.

    I want to define the RECORD type of the manner in which it has been set to 'fnd_flex_loader_apis.who_type', but using my own variable and passing in the parameter. Make sense?

    Thank you
    Scott

    Hope that helps.

  • specify the cfinput type file folder start

    Anyone know if there is a way if you use < cfinput type = "file"... > to specify the folder of the file Explorer starts in?

    Even better (and I REALLY want to do), is there a way to simply specify the file used by CFFILE name by concatenating the path + filename + extension doc, IE:

    < cfset form.photo = "source_path" & form.file_name_entered_by_user & ".jpg" >

    and then:

    < cffile action = "upload".
    fileField = "form.photo"...

    It would be much easier things mke for users.

    I'm sure that no, on both accounts. Mainly for security reasons.

    FILE fields require the user to interact with their computer and a decision consious about their choice. The startup location depends on where their last record or files during load or download of operations through the BONE... the OS commands this feature, not your web page. If people could program pages well start somewhere they could try and entice users to provide files which hinder the security of their computer. In addition, how do you believe you know where they recorded the file they are downloading?

    DOWNLOAD CFFILE requires a user multi-part form to submit for download, and the field sent to the command must be a file field. It cannot be done with the right programming. Again, it is a question of security, otherwise anyone could program a web page to steal files on a computer without the knowledge of the user, and it would be a huge legal and security problem.

  • I can't restore my favorites that I backed up, because they seem to be of type 'file' instead of 'JSON '.

    I backed up my favorites until I have re-formatted my computer. I used Firefox backup tool. On the registration screen, the only thing I remember was the name of the file, but everything I've done done him be saved to one type other than the "JSON" files that Firefox recognizes. Thus, the file is not recognized when I try to restore it using restore Firefox bookmarks. In properties, it is simply called a type 'file', not 'JSON '. I can't open it with Firefox, only Microsoft Word (I think). All the data seem to be there as a long string of info that contain the links among many other data. Very complicated format. Is there a way to convert this to a JSON file that recognizes the Firefox in order to restore the bookmarks? Thanks much for any help.

    View this file in a simple text editor, if this file begins by {"title": "","id": 1, "dateAdded": -simply change the suffix of jsonfile.}

  • HDR-CX240... How can I get the camera to record all FILES VIDEO in MP4 format?

    HDR-CX240... How can I get the camera to record all FILES VIDEO in MP4 format. Is this possible? I can't find how to change what default file to save to. Any help would be appreciated.

    Hi dang201,

    There is no option to save the video in mp4 format only. You can check on the MProot folder on your memory card for mp4 files. The. MTS files are normally saved in another folder called flow.

    If my post answered your question, please mark it as "accept as a Solution.

  • FILE cannot BE DELETED, the file size of the file type 'file' "0 bytes"

    I downloaded a music file of myfreemp3.eu, he wasn't .mp3.  He was able to play a couple of times, but now does not open.  Now, I can't move or delete it from the downloads folder, system do not see.  its properties are of TYPE 'file' and SIZE '0 bytes. "  Error message is "unable to find this article. It is no longer in xxx, etc.

    I tried many suggestions to remove it without success.

    I have Vista 2007 service pack 2.  I tried in safe mode, tried to move to another folder, tried to run without windows, search, folder to never display thumbnails, tried Mandrake Move, but it was outdated, orders back cmd has tried to delete. Also tried to delete with disabled explorer.exe.

    Any suggestions?

    http://answers.Microsoft.com/en-us/protect/Forum/protect_other-protect_scanning/file-cannot-be-deleted-file-type-file-file-size-0/60d88d01-CD74-4f47-976e-f5d2cb3dc7a1 >

    Thank you Ganesh and Hetti.  I just finally deleted my ghost file.  I used the safe mode and cmd.

    I went into the directory of downloads in the BACK, the used command DIR / X to find out the name of the file.

    He was ~ 1 at the end of the file name.   I used DEL filename ~ 1 and the file disappeared.  I checked the

    trash and he wasn't there either.  I rebooted the computer and found no trace of the file.

    The controls were as follows,

    CD C:\users\my name\downloads

    dir / x (to find the full file name,)

    del (to remove the file)

    I could probably use alternative command

    del *. *.

    Thank you again and maybe it helps someone else.  I ran the control with the repair disc, but that did not remove the ghost file.  I could also not delete the downloads folder.  Create the same named file with 0 bytes not working anymore.  I tried the latest version of Mandrake then.

  • I have problems keeping records and files of the administrator and the user separate in my laptop (HP Pavilion dv6700) under Windows Vista Home Premium.

    I have problems separating records and files of the administrator and the user. My computer is a laptop (HP Pavilion dv6700), used as a home computer only by myself, I like to keep the two distinct roles, but am unable to as Vista seems to be considered as one and the same. This scenario has arisen as follows:

    Initially, when I bought the laptop - approx. 18 months back - Windows Vista Home Premium was preinstalled, with the name 'Administrator' as an administrator. To customize the operating system and to use safely, I installed a user 'Renault', as a Standard account user.

    After awhile, I changed the name of the Director of "Renault", for reasons I have can not remember now. This caused Vista to combine folders and files of the two "users" in one, I found difficult to deal with, that I could not operate my laptop as just a Standard user, but is still considered the "administrator." On the one hand, this greatly increased spam in my email accounts. So I tried to reset the name of the administrator as 'Administrator' itself and keep my user name as "Renault", as originally the case.  But Vista me has failed to create a new user under the name "Administrator". So I created a new user under the name "System administrator", with administrative privileges. This has been accepted by Vista.

    But I forgot to change the user account for 'Renault', on the Standard account, so there was BOTH administrator accounts at the same time on my laptop! I realized that now only. The net result was that all the files that I created under the system administrator user were still being displayed under the user account of Renault. A few days back, I realized this and tried to separate the files correctly, but it has not been possible. No matter what I copied the account of the user in the files under the system administrator account, the files have been copied on account of the user himself.

    I tried to fix this by changing the name of the user account in something very different, AND as a Standard user. but this also does not work, as all folders and files under the administrator account system shows it as being under the user account of "Renault" only!

    Then, I deleted the user 'Renault' from the list of the user, but he was not yet of any help. Whenever I tried to create a new file under the system administrator, Vista responds with the message, "C:\user\Rajaram folder is not present. Will I create a new? ", which defeat the same purpose of my tent to isolate the administrator account and the user account.

    SOMEONE HELP ME PLEASE WITH A SOLUTION, - OTHER THAN REFORMATTING MY C:\ DISK AND REINSTALL VISTA AGAIN - TO GET OUT OF THIS MESS, IT SEEMS TO ME YOU HAVE CREATED AND HELP ME TO HAVE AN ADMINISTRATOR ACCOUNT AND OTHER UNIQUE STANDARD USER ACCOUNTS PROPERLY ISOLATED.

    I would be always grateful for a quick and helpful response.
    Thanks in advance.

    -RAJARAM77
     
    Thanks for your reply. It was very helpful / sorry your proposed solution has not solved my problem. Kind regards. -Rajaram77

    Better to delete the user account except the one that was built in the administrator account that you renamed. Before this backup all your data files of these user accounts.
    Then rename the buil into account administrator as 'administrator '. Then you create another administrator account and use it and never the user built in Administrator account and leave it alone.

  • How to get the path (using &lt; input type = "file" / &gt;)

    Hello world

    I create a HTML form that has an entry of type = "file".  This will give you a dialog box browse for your user to search for a file on the operating system.

    And my code:

    function handleFileSelectForMyShop (evt)
    {
    var blnFileReaderSupported = false;

    Try
    {

    Debug.log ("handleFileSelect", "start handleFileSelect");
    reader of var = new FileReader();
    blnFileReaderSupported = true;
    var files = evt.target.files;
    var size = files.length;

    Debug.log ("handleFileSelect", "handleFileSelect # selected files:" + size, debug.info);

    for (var i = 0; i)< size;="">
    {
    Debug.log ("handleFileSelect", "in the handleFileSelect analysis the index file" + i, debug.info ");
    var f = files [i];
    Reader.OnLoad = (function (theFile)
    {
    Debug.log ("handleFileSelect", "start reader.onload", debug.info);
    return Function
    {
    Debug.log ("handleFileSelect", "start Function", debug.info);

    Debug.log ("handleFileSelect", "reading file" + theFile.name + "(" + theFile.size + "") "" + theFile.type, debug.info);

    If (theFile.type.match ('image.*')) {}
    var path = e.target.result;
    alert (path);
    create the path

    } else {}
    jAlert ("Please select photo!', 'Error'");
    }
    };
    })(f);

    If ((f.type.match ('image.*')) |) (f.type.match ('audio.*')) | (f.type.match ('video.*')))
    {
    Debug.log ("handleFileSelect", "in handleFileSelect call reader.readAsDataURL for type" + f.type, debug.info);
    Read in the media file in the form of a data URL.
    reader.readAsDataURL (f);
    }
    }

    Debug.log ("handleFileSelect", "Complete", debug.info);
    }
    {} catch (e)
    Debug.log ("handleFileSelect", e, debug.exception);
    If (! blnFileReaderSupported)
    {
    Alert('Error.) The FileReader API is not supported. ") ;
    }
    }
    }

    function doPageLoad()
    {
    Try
    {
    ELE var = document.getElementById ('txtFile_staffInfo');
    If (ele)
    {
    ele.addEventListener ('change', handleFileSelectForMyShop, false);
    }
    imgSelectPictureClick = 0;
    }
    {} catch (e)
    Debug.log ("doPageLoad", e, debug.exception);
    }
    }

    window.addEventListener ("load", doPageLoad, false);

    Note: And alert (path) leads to a Base64 string! It is not a path of the image that I browse a Spain file on the operating system.

    I want to have a full path of the file. For example: file:///accounts/1000/appdata/WebWorksAppTemplate.testa3NBcHBUZW1wbGF0ZSAgICA/shared/camera/image01.jpg

    I hope to see your reply soon!

    Thank you and best regards,

    A Pham

    A Pham

    I think that you can not get the absolute path of a file due to browser security, when you use the

    It's something that you need probably a PlayBook extension for.

  • Windows 7: what are the individual "file system type" files in the system volume information folder?

    Original title: Windows 7: what are the individual "file system type" files in the folder system volume information accumulating [not the files system restore I already know and don't use yet]

    Hi-

    I stopped using the system restore, I found a better solution, for me, that's what I have to do.
    Then I noticed that several 'file system' 'type' was being created, 12 times yesterday, 3 up to today in the early hours of the morning and stored in they System Volume Information folder, anywhere from 30 MB to 2 GB.
    three of these file names 'file system' 'type' are:
    {debb21da-eafc-11e2-ba92-00241dc5d84e} {3808876b-c176-4e48-b7ae-04046e6cc752}
    {3debe675-eaa7-11e2-a462-00241dc5d84e} {3808876b-c176-4e48-b7ae-04046e6cc752}
    {3debe5e8-eaa7-11e2-a462-00241dc5d84e} {3808876b-c176-4e48-b7ae-04046e6cc752}
    Anyone know what it could be?
    Can I follow up to what program/process they are related?
    Are they safe to delete?
    Ideas?  Suggestions?
    Thank you.
    John

    Hi John,.

    Yes, you can delete the system volume information data if not to use the system restore.

    You will need to give permission to the folder until you delete it.

    How to open a file if I get an access denied message?

    Please post with the State of the question.

  • objects and the record type

    Hello experts.

    create type emp2_obj is object
    (
    objno number
    ,
    objname varchar2
    (20),
    objdept number
    );

    create type emp2_objarr is table of emp2_obj;

    and

    type emp2_rec is record
    (
    recno number
    ,
    recname varchar2
    (20),
    recdept number
    );

    create type emp2_recarr is table of emp2_rec ;

    Objects and types of records are created similar and have the same similar object.  Is it only advisable to use registration type if you use a collection in PL/SQL type... Please advice

    user13328581 wrote:

    the only reason why I ask is because he asked during an interview

    -Objects and the types of records are created similar and have the same similar object.  Is it only advisable to use registration type if you use a collection in PL/SQL type... Please advice

    Not at all.  You can use record types used with collection types outside.  They are a group concept.  If you want to group a set of values together (including fields), you can use a record.  It may be convenient.  You can send documents around proc and functions.

    Be aware that the record types are limited to procedures, functions, anonymous blocks and packages (i.e. PL/SQL), while the types of objects are stored in the dictionary of data as a separate Oracle objects (they can also have methods, the records may not).  Object types can be used in SQL, as said sol.beach types of records (outside of the intelligent pipeline situations) is for PL/SQL.

  • Why Surface does not support WTV (Windows 7 Media Center recorded TV) files?

    I have a Windows 7 Media Center, and if I try to open the WTV Recorded TV files I just get a pop up asking me if I want to find an app in the store to play this file format.  Why the Surface can not read files WTV in Windows 7 Media Center?

    the bottom line is because there is no decoder DVD on the Surface. If you convert to the
    MP4, the file will play.
     
     
    Barb
     
    MVP - Windows/entertainment and connected home
     
     
    Please mark as answer if that answers your question
     
     
     
     

Maybe you are looking for

  • How do I change the security questions?

    How do I change the security questions?

  • Satellite Pro L500D - I can not install the ATI from Toshiba page display driver

    I reinstalled Windows 7 Home Premium 64-bit.No, I have the problem, I can not install the Ati (HD 4100), downloaded displaydriver from Toshiba for my Notebookmodel.

  • SpeedyPC pro will interfere with mcafee

    I have XP with McAfee since 2006. I would like to run SpeedyPC Pro, but I'm worried it they may interfere with eachother. And, because this old computer is faced with time control for which I don't have the password, I can't remove McAfee. Can I down

  • Restore files from a backup

    I got a Windows Vista Home Premium, I have all my files on an external backup hard drive before I did a factory setting. I updated to Windows 7 Home Premium, now when I try to restore my files is not the date to which I save before the factory settin

  • BlackBerry smartphones can someone help please?

    up to a few days a go, I was able to surf the web and send/receive surveys bbm so I was on the phone, I contacted blackberry and they said to contact my service provider, so I did it and then we me contact blackberry once again, so I don't have all t