Needs Advice on Record Type and Views!!!

Hello all,
I have a package that returns a record type based on some arguments. I have a view that wants use a column from that record type. Obviously, I cannot call the package from the view.
I started looking into objects type, maybe use it instead of record type so that I can create a table on the object type and then use my object type table in my view. The problem is, I still have to call my package and passed the arguments to get the right data.
Could any of you help me direct me on how to deal with this kind of issues? I have also looked into member funtion but not sure. I am aware that I can write a function by itself and use the function in my view. But I was thinking in more of lines of completeness of my code that can serve all my needs, if possible.
A reply will be appreciated. Thank you.

I read about Panasonic AG-DVX 100 Cam that shoot in 24f and before its print in FCP, the pull down takes it to 29f.
And the Sony i believe shoot near enough the same as the Panasonic.
So if that's the case would the conversion of FCP for the pull down come out alright, there is no point really in jumping to another Forum when the integration is with FCP!
Just need to get a cam that integrates well with FCP for a budget of under $4,000.00 and in the range of 29.97f,
Fr.BlayZay.

Similar Messages

  • How create a record type and a pl/sql table of that record type in database

    Hi
    I want to create a record type and then I want to create a PL/SQL table in the oracle 9i database.
    I have done it in PL/SQL block.
    But when I am trying to do it in database it is throwing me some error.
    Could you please tell me how can I do that?
    Regards

    user576726 wrote:
    Hi
    I want to create a record type and then I want to create a PL/SQL table in the oracle 9i database.
    I have done it in PL/SQL block.
    But when I am trying to do it in database it is throwing me some error.
    Could you please tell me how can I do that?
    RegardsRECORD type is supported only in PL/SQL for SQL you need to use OBJECT type.

  • How does a record type and table type works

    Hi,
    How a record type and table type work for the ref cursor,
    below i m giving an example but its giving me errors
    can any one help me for this?
    declare
    type empcurtyp is ref cursor;
    type rectype is record (veid t.emp_id%type, vename t.ename%type);
    TYPE tabtype IS TABLE OF rectype;
    empcv empcurtyp;
    vtab tabtype;
    begin
    open empcv for select emp_id,ename from t;
    loop
    fetch empcv into vtab;
         exit when empcv%notfound;
         dbms_output.put_line(vtab.vename||vtab.veid);
    end loop;
    close empcv;
    end;
    here we hav table t and i m taking only two fields of the table t which r emp_id and ename.

    Hi,
    What errors are you getting with this? From experience you don't need a loop to put the records into the ref cursor its usually done on block.
    HTHS
    L :-)

  • Calling Oracle Stored proc with record type and table Type

    I have a oracle SP which takes record type and table Type which are used for order management.
    Is there anay way to populate parameters with these datatypes and call the stored procedure using ODP.NET?
    Please help.
    Thanks in advance

    Hi,
    ODP supports associative arrays and REF Cursors. There is no support for PLSQL table of records.
    Jenny

  • Help in using record type and object type

    Hi Experts,
    I am new to object types and record types.
    I want to return the output of this query using one OUT parameter
    from the procedure using RECORD type or OBJECT type.
    with out using refcursor.
    SELECT empno,ename,sal FROM emp WHERE deptno=30;
    Let us assume the query is returning 50 records.
    I want to send those 50 records to OUT parameter using record type or object type.
    Please provide the for the requirement code using RECORD TYPE and OBJECT TYPE separately.
    Your earliest response is appreciated.
    Thanks in advance.

    Hi All,
    I have tried this.But it ising not work
    CREATE OR REPLACE PACKAGE maultiplevalues_pkg
    IS
    TYPE t_record IS RECORD
    (empno emp.empno%TYPE,
    ename emp.ename%TYPE,
    sal emp.sal%TYPE);
    V_RECORD t_record;
    TYPE t_type IS TABLE OF V_RECORD%TYPE;
    PROCEDURE maultiplevalues_pROC(p_deptno IN emp.deptno%TYPE,
    dept_result OUT t_type);
    END;
    CREATE OR REPLACE PACKAGE body maultiplevalues_pkg
    IS
    PROCEDURE maultiplevalues_pROC(p_deptno IN emp.deptno%TYPE,
    dept_result OUT t_type)
    is
    begin
    dept_result :=t_type();
    for I in(
    select EMPNO,ENAME,SAL from EMP WHERE deptno=p_deptno
    LOOP
    dept_result.extend;
    dept_result(i).empno :=i.empno;
    dept_result(i).ename :=i.ename;
    dept_result(i).sal :=i.sal;
    END LOOP;
    END;
    END;
    Please help me OUT return multiple values through single OUT variable in a procedure.
    Thanks.

  • Create JPub class for table of records/record types and access them

    Hi,
    I have the following object types in the database:
    PERSON_REC with 3 fields and
    PERSON_TAB table of PERSON_REC
    I have created a Java class for PERSON_REC using JPub. The created class implements CustomDatum and CustomDatumFactory. How do I do it for table of records type i.e PERSON_TAB??
    I have a stored procedure that has PERSON_TAB as a OUT parameter. How do retrieve the value from callablestatement? Is there a sample code anywhere. Kindly direct me.
    I have seen sample code and documentation for PERSON_REC type from JPub but not for table of records; also there is no sample code for accessing them from JDBC. Please help me..
    Thanks and regards,
    Vadi.

    Vadi,
    Try searching this forum's archives for the words "STRUCT" and "ARRAY".
    Good Luck,
    Avi.

  • PL/SQL Record Type and Toplink

    Can i call PL/SQL procedure having a parameter of record type in toplink. If yes, how it is possible?

    Hi,
    Record defines a representation of a database row as field=>value pairs.Whenever a query is exceuted the rows in the result set can be accessed thru RECORD interface.Can you be more elaborate on the question.
    Are you trying to access the result set obtained after executing the Stored Proc using Record interface or you want to pass the Record as input parameter to Stored proc?

  • Need advice: About record store

    Hi,
    I am developing an application which will first display a list of options to users (multiple choice i.e. with check boxes). The list of options could be anything, such as movie titles, etc.
    The application will need to allow users to select their options by
    checking the check box, and save the selected ones in record store.
    My problem is, the next time when users launch the application, how
    should it read in the records from record store, such that options
    previously selected by them are "checked"? For instance, a user selected "Stardust" and exit the application. Then when he re-launches the application, he will see "Stardust" as checked.
    I was thinking of using a loop, which will read in each record, and compare with the list; then check those which are identical. But I reckon this is rather inefficient? How shall I solve the problem?
    Thanks in advance :)

    Hmm... maybe I misunderstood your application. Where do you load the list, I thought it was from the RecordStore.
    If you save only the selected items in rms, you've already done all you need to do.
    Hey, by "control character" I didn't mean any special character. If I had to save all items and their selection status, I would probably prepend "Y" or "N" for the selection status and when loading, read the first character for status and the rest of the String for the name.
    There may be a more efficient way to so this but I don't know of any. Keep checking back, some professional developer may offer advice.
    Cheers, db

  • New to Mac...Need advice...MBP and My Book external drive

    I'm new to Mac. Getting my MBP 2.4GHz/15" in tomorrow and this will be a migration from the Windows world to the Mac world for me. So I need some advice.
    I received my My Book Pro 500GB external HDD in today and have a friend's MacBook running the current version of OS X to do any work I need to do to this HDD.
    I'm going to have Windows XP Home available via Boot Camp and Parallels (depending on whether I need to run natively or not) in case that matters.
    Here's what I have in terms of data:
    - about 2GB of data files (Word, Excel, etc.)
    - about 6GB worth of photo files
    - about 85GB of home movies that are in .avi format at this time
    I'm a little overwhelmed with all that I've been trying to digest regarding this move and just found out my laptop will be here tomorrow. I thought I had some extra time but that hasn't turned out to be the case.
    What doesn't make sense to me right now is how to get my data over to my new machine, move what isn't critical to have on the laptop's HDD out to external, and how to figure out which file system I'll need on this external drive. My laptop will be partitioned with 30GB available to Windows and the other 130GB for Mac. Do I need to format this external drive with the Mac file system only? Or do I need to leave some space formatted FAT32 in case I need some overflow on the Windows side? Will the Windows environment be able to see any of the Journaled space on either the internal or external drive? I assume not.
    I'm so confused right now, I can't even put anything down but these fragmented thoughts. Hopefully somebody knows where I'm at and can give me some advice.
    Thanks-
    John
    MacBook Pro 2.4GHZ   Mac OS X (10.4.10)  

    Start with Switching from Windows to Mac OS X and Basic Tutorials on using a Mac.
    Since I don't have an ICBM (Intel-chip-based Mac), I can't help with the external HD stuff. However, you should be aware that file system formats and partition mapping schemes are two different things.
    OS X requires the Mac OS Extended (HFS+) file system formatting—applies to both PPCs and ICBMs. Details on file system formats are in http://developer.apple.com/documentation/Performance/Conceptual/FileSystem/Artic les/MacOSXAndFiles.html
    ICBMs the GUID Partition Table scheme. Details on partition mapping schemes are in http://developer.apple.com/documentation/MacOSX/Conceptual/universalbinary/universal_binary_tips/chapter_5_section10.html
    Whether or not you can use both the Mac OS Extended and FAT-32 formats on separate volumes, I'll leave to the other experts.

  • Need advice about recording my daughter singing- what do I need to know?

    Thanks folks for listening.
    Have a brilliant wee singer who has her own amp/karaoke machine but the equipment is hooked into our TV and that only gives out as good as the home system's abilities.
    Besides which- now that she is so good I'd like a permanent record.
    I have a 1.5GHz PB with 1GB of RAM. What can I get to help me record her by way of hardware (mikes) and software (would Soundtrack Pro be the answer?).
    Note that I happened upon this part of the "discussion" by accident and really do not know if I am right here.
    Any help you wonderful people can give me would be gratefully appreciated as this young lady is 14 and is seeking to go into music once she finishes school here in Scotland in four years time. Anything I can do to help her follow her ambition (not pushing here- heaven forbid!) is good by me so your help will be invaluable!

    Thanks for the reply- and sorry for the delay in replying.
    OK- she has been using GB herself so I guess we need to look at the hardware...
    As I am definately not "grown up" in this department am I right in saying that the mike ought to go through the pre-amp first and THEN into the Mac running GB?
    I shall look at the things you recommend- erm...
    AM looking at what you recommend... What am I looking at in terms of which is better? I mean- one is 60 cheaper and littler. Is all I can say between the two as the technical specs are too much for me to understand.
    A preference anyone? This links to the Firebox but has the recommendation for the other below: http://www.dolphinmusic.co.uk/page/shop/flypage/product_id/5031

  • Need advice for future design and hardware I should purchase now.

    I was wondering if someone could assist me in making a decision on where I should take the future design of my network. Currently the design has no redundancy and I've been told recently that my company has a bit of money to spend and that it needs to spend it within the next 2 weeks. I am fairly new to the company so haven't been able to really think about future redundant designs nor have I studied much about designing networks. There are about 200-300 people that may be using my network at once, all users aren't at the location in question but they may be asking for resources from our servers.
    I've included a basic design of the "core" of my network and would like any suggestions for creating redundancy in the future and also optimizing the way data travels to our servers. Do people generally have redundant Layer 3 switches for the core in small networks such as mine? I will be replacing the 2811 since it only has 100Mbps connections and was thinking, perhaps replace this with a Layer 3 switch with the plan to have another identical Layer 3 switch installed to offer redundancy in the future.
    Also, would it be a good idea to move the servers into a vlan on the core? Thanks for any advice on what I should be purchasing now with plans for redundancy being implemented over a year.  -Mark

    40k Can go pretty quick depending on the scope. Your server farm especially should be dual-homed capable of surviving link, hardware, routing, and software failure.
    It's going to be best practice your server farm be in it's logical subnet, so failover mechanism can be controlled routing protocols, as opposed to FHRP's such as HSRP/VRRP/GLBP. Especially since you adjust routing timers to sub-second convergence.
    Budget will be the primary limitation (as it always it) but ideally dual 6500's running VSS and FWSM would be the ideal way. Data centers should be designed with high availability in mind, hence the need to 2x devices.
    Depending on the size of the SAN/Virtual infrastructure Nexus might want to be considered but you will chew up 40k before you know it.
    Also make sure the server farm is scaled properly. Your server farms should be oversubscribed in a much higher ratio compared to your access layer.
    CCNP, CCIP, CCDP, CCNA: Security/Wireless
    Blog: http://ccie-or-null.net/

  • Need advice about H.264 and Apple ProRes 422.

    When exporting a "master file" I can encode the video as H.264 or Apple ProRes 422 (etc). The H.264 is more compressed but still in 1080p? Does this mean that I do not have to compress the file with "Compressor"? What is the advantage of using ProRes and what is the advantage of using H.264? I want of course the files to be as small as possible but still at the best quality. Any advice?
    Thanks.

    ProRes is an editing format. If you are archiving a finished project, you can create an extremely high quality "print" with H.264. ProRes 422 will use approximately three times as much memory. ProRes 422(HQ) roughly four times and ProRes 4444 up to 10 times (compared to the size of the file FCPX will export as H.264). 
    FCPX exports (shares) H.264 in highest quality (over 45Mbits/sec [if needed] for 1080p), you have no options to adjust for smaller files (or lesser quality from FCPX.)
    To get "as small as possible," you'll need to learn more about compressing video. As a comparison (to FCPX), YouTube limits a maximum bandwidth of 8Mbps (used to be 5Mbps -- I *still* compress to 5Mbps before uploading.) Even compressed this highly, H.264 provides excellent results. [Compressing in ProRes is going from 4444 down to 422 Proxy (not to be confused with proxy media used in FCPX which is 1/4 resolution, i.e. 960x540 for 1080, ProRes 422.) You cannot compress each of the different ProRes flavors individually.]
    You'll need other software to compress further than FCPX.  I use Quicktime 7 Pro. Compressor is another way to go (Compressor will let you set "compression markers" so you can vary the bitrates through various sections of your work).  The way to figure out your compression level is to find a section (less than a minute) with the highest motion high contrast (and/or changing gradients) and export at different bitrates. Watch for "jpeg artifacts" (blocking) and once you've gotten past that, that's the bitrate you should compress to. (I've had some clips that required at least 20Mbps.) It just takes a little practice to get a feel for it.

  • Need advice about text formatting and hyperlinking

    Hi folks,
    Thanks for reading my post. I am new at this and am using
    Dreamweaver 6.0 for our website. We are putting together a
    substantial directory on our site and were wondering if there was
    any way for us to:
    1. Not have to enter each hyperlink address into deamweaver
    and have the software automatically recognize the link and point to
    the site; and
    2. Find the most efficient way to highlight a string of text
    quickly
    here is an example of one of our many listings in the
    directory:
    Alleghany County Community Foundation
    4601 Six Forks Road
    Suite 524
    Raleigh, NC 27609
    800-201-9533
    http://www.nccommunityfoundation.org/
    Every foundation has their own grant awarding guidelines.
    Please get in touch with The Alleghany County Community Foundation
    to see if you or your business is eligible for a grant.
    Any advice would be greatly appreciated. Thanks all.
    Vivek

    > Dreamweaver 6.0
    Please run as fast as you can to the Adobe downloads page and
    get the
    updater for DW6.0 -> DW6.1. There were quite a few
    anomalies that can catch
    up with you unexpectedly in that first release version.
    > 1. Not have to enter each hyperlink address into
    deamweaver and have the
    > software automatically recognize the link and point to
    the site; and
    > 2. Find the most efficient way to highlight a string of
    text quickly
    I'm not quite sure what you are asking here. As already
    suggested, it
    sounds like you need to have your link information in a
    database, which is
    then placed on the page but maybe not.
    And 'highlight' a string of text quickly? Sorry - I don't
    understand what
    you are looking for....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "vlakhiani" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi folks,
    >
    > Thanks for reading my post. I am new at this and am
    using Dreamweaver 6.0
    > for
    > our website. We are putting together a substantial
    directory on our site
    > and
    > were wondering if there was any way for us to:
    >
    > 1. Not have to enter each hyperlink address into
    deamweaver and have the
    > software automatically recognize the link and point to
    the site; and
    > 2. Find the most efficient way to highlight a string of
    text quickly
    >
    > here is an example of one of our many listings in the
    directory:
    >
    > Alleghany County Community Foundation
    > 4601 Six Forks Road
    > Suite 524
    > Raleigh, NC 27609
    > 800-201-9533
    >
    http://www.nccommunityfoundation.org/
    > Every foundation has their own grant awarding
    guidelines. Please get in
    > touch
    > with The Alleghany County Community Foundation to see if
    you or your
    > business
    > is eligible for a grant.
    >
    > Any advice would be greatly appreciated. Thanks all.
    >
    > Vivek
    >
    >

  • Need advice about Mac Pro and Windows networking

    I currently have 2 machines at work: One HP Windows PC (high configuration) and a PowerMac G5 2GHz dual. I'm basically close to purchasing a new Mac Pro to replace both machines but need some advice. I do the majority of design work on the Mac. However I need the Windows PC to also do some design work but mainly use it to connect into the windows network at work. Basically I need to be able to access the network drives (which are set up with Novell Netware, with IPX turned off), Novell GroupWise email system and connect to the internet through the LAN. Can I do this with a Mac Pro, with either Bootcamp or Parallels? Is there any sacrifice in terms of performance in using Bootcamp or Parallels? The end result I want is similar to what I am doing at the moment - at the moment I use a PC to network and the Mac to design, side by side with each other. What I want is to do this from one machine, not two. (I also need the PC side of things as I need to use some software that isn't available on the Mac, eg. bespoke databases that run on PC). Is it easy to network under Bootcamp/Parallels? What pitfalls are there that I need to be aware of?

    When your running Windows via bootcamp, you are essentially Running windows on a PC architecture. You will have all the same capabilities that you have now.
    When you use Parallels to run Windows, you are running Windows as a virtual machine running within the confines of the Mac OS. The advantage is that you can run multiple OS's at the same time, and easily share files and data between them. The disadvantage is that the OS running within Parallels has a slightly performance hit, meaning you are not running as fast as the bootcamp version, but the performance hit is very slight. The only place that Parallels is lacking at the moment is in support of 3D or accelerated graphics. That is Parallels currently cannot make use of a graphics card 3D capabilities or advance GPU options. Parallels has stated their intent is to provide better graphic card support in the near future.
    With all this in mind, I don;t see any reason why you cannot use Parallels for your Windows networking needs, and the Mac for your design needs, all at the same time. You will need of course to ensure you have enough RAM to support both OS's if you intend to run them at the same time.
    Tom N.

  • Wish list-Channel display, need more favorites, need easier navigation to delete and view

    1) Whenever I change channels, I get an info overlay that shows time, channel, and brief info--it fills about lower 1/4 of screen and does not go away for 5-6 seconds. How to get rid of this display or display for 1-2 seconds so I can see what is on the screen. If I want to know what channel and info, I can always hit info button..........??
    or allow a "display channel only" option in modes (e.g., show HD channels only mode) or allow as a setup option to reduce the footprint/area of this info
    2)Re favorites and modes, allow more favorite lists and allow choosing which in modes function as above
    3)Need better management options re choosing & deleting recorded program to get away from time consuming drop down lists and subcategories e.g. all recorded:  alphabetically or by date

    clickerman wrote:
    1) Whenever I change channels, I get an info overlay that shows time, channel, and brief info--it fills about lower 1/4 of screen and does not go away for 5-6 seconds. How to get rid of this display or display for 1-2 seconds so I can see what is on the screen. If I want to know what channel and info, I can always hit info button..........??
    or allow a "display channel only" option in modes (e.g., show HD channels only mode) or allow as a setup option to reduce the footprint/area of this info
    If you hit the EXIT button on the lefthand side of the remote next to the circle of Arrow Buttons, it will immediately remove the info.  There is a way to change the amount of time this info stays on the screen (I changed mine way back when I first switched to FIOS), but I don't remember how.  Found it somewhere in the menu selections - I think for the remote or maybe the display sections.  Anyway, it's in there!  Hope that helps.

Maybe you are looking for

  • Hi I have an hp printer desk jet 2540 series

    I have a hp printer wireless 2540 series and I want to no how I can print from my iPad while on the Internet, as it seems I can only front if my iPad is not connected to the Internet?

  • How to hide folder in PCD  with respect to other user

    Hi,      I want to hide some folder in PCD,suppose any other user enter into portal,he is not able to view the particular folder with out my permission.     for eg."X" user hide one folder means,"Y" user not possible to view the hided folder.      ca

  • Product Registration for Macbook Pro

    I've just registered my Macbook Pro for proof of ownership so that I can buy some accidental coverage from Safeware. I registered the product online, at the end of the form it said Thank You you should receive a confirmation e-mail. So far it's been

  • CFDocument - Get File Name for DB Insert

    Greetings, Does anyone know how / if possible to get name of file created with the cfdocument tag for insertion into a db? <cfdocument filename="c:\inetpub\domain\ems_reporting\ file_name.pdf" Thanks Leonard B

  • Cannot change partition size on firewire external drive

    My external firewire drive has three partitions, one of which is used for Time Machine and is out of space; the third one is empty. When I use Disk Utility to try to increase the size of the second partition without erasing its contents, I get the me