Is it possible with just "SQL"

Hi everyone,
I have a LOCAL TABLE with the following structure ..
EX:
TABLE_ID 1
EMPNO 1234
LAST_NM JOHN
FIRST_NM SMITH
DOB 06/05/1982
I have another TABLE which is in TRASACTIONAL DATABASE (which has million rows)
I have access to this table with a database link..
EX:
EMPNO 1234
LAST_NM JOHN
FIRST_NM SMITH
DOB 06/05/1982
I am trying to write a query which search for EMPLOYEE last_nm... But first it has search in the LOCAL TABLE if it doesnt find over there it hase hit the TRANSACTIONAL TABLE and get the   results back
EX:
If i search for LAST_NM as "JOHN"... I have JOHN in the LOCAL TABLE.. so the output would be like the following..
TABLE_ID EMPNO LAST_NM FIRST_NM DOB
1 1234 JOHN SMITH 06/05/1982
But if search for LAST_NM as "FORD".... I dont have it in the LOCAL TABLE..so the output would be like the following..
TABLE_ID EMPNO LAST_NM FIRS_NM DOB
NULL 5435 FORD STEVE 08/09/1973
If i dont give any search parameter ..it has give the output of all the employees in the LOCAL_TABLE....
IS it Possible to do With Just a SQL query..without using any PL/SQL....
Thanks in advance for the help
phani

SELECT *
FROM local_table
WHERE last_name = 'JOHN'
UNION
SELECT *
FROM remote_table
WHERE NOT EXISTS ( SELECT 1
FROM local_table
WHERE last_name = 'JOHN' ) AND last_name = 'JOHN' ;{code}                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Tricky SQL - is it possible using just SQL and no PL/SQL

    Hello everyone,
    Here is my data
    create table experience (exp_id number(10), exp_name varchar2(20), root_exp_id number(10));
    insert into experience values (642, 'Test', 5172);
    create table experience_node (exp_node_id number(10), exp_node_type_id number(2));
    insert into experience_node values (5172, 1);
    insert into experience_node values (5173, 2);
    insert into experience_node values (5174, 2);
    create table experience_connector (exp_conn_id number(10), exp_conn_type_id number(2), exp_node_id number(10), parent_exp_node number(10) );
    insert into experience_connector values (4287, 1, 5173, 5172);
    insert into experience_connector values (4288, 2, 5174, 5173);
    insert into experience_connector values (4289, 2, 5175, 5174);
    When we run these queries:
    select     parent_experience_node_id
    from     experience_connector
    where     experience_node_id = 5175;
    select     parent_experience_node_id
    from     experience_connector
    where     experience_node_id = 5174;
    select     parent_experience_node_id
    from     experience_connector
    where     experience_node_id = 5173;
    select     parent_experience_node_id
    from     experience_connector
    where     experience_node_id = 5172;
    gives 5174, 5173, and 5172 and null. exp_node_type_id = 1 and exp_node_conn_type_id = 1 indicate that it is at the root level. Hope my explanation is helpful. What I am trying to get is - to get great great grant parent for 5175 which is 5172. Is this possible to do this with SQL?
    Thank you so much for you help.
    Best,
    Lakshmi

    We can use "model clause" ;-)
    create table T (id number(10), parentID number(10) );
    insert into T values (5173, 5172);
    insert into T values (5174, 5173);
    insert into T values (5175, 5174);
    commit;
    select parentID
      from T
    model RETURN UPDATED ROWS
    dimension by(id)
    measures(parentID)
    rules(
    parentID[9999] = parentID[5175],
    parentID[9999] = parentID[parentID[9999]],
    parentID[9999] = parentID[parentID[9999]]);
    PARENTID
        5172
    or
    select parentID
      from T
    model RETURN UPDATED ROWS
    dimension by(id)
    measures(parentID)
    rules(
    parentID[9999] = parentID[parentID[5175]],
    parentID[9999] = parentID[parentID[9999]]);

  • Can spool a file with just sql result?

    Hi, I am trying to using sql to generate sql script and then run it, it's like this:
    set heading off
    set feedback off
    spool gt.sql
    select 'grant select on '||table_name||';' from dba_tables where owner='ABC';
    spool off
    @gt.sql
    The script generated looks like this:
    SQL >select 'grant select on '||table_name||' to ABC';' from dba_tables where owner='ABC';
    grant select on EMP to ABC;
    SQL> spool off
    IS there an sqlplus command that will not make the two sql commands show? so I can run the gt.sql right away instead of having to manually remove those two SQL> XXX before I can run the script.
    Thanks a lot.

    set echo off
    also, and more importantly, you need to put all of into a single sql script. ex:
    gen_gt.sql
    set echo off
    set heading off
    set feedback off
    spool gt.sql
    select 'grant select on '||table_name||';' from dba_tables where owner='ABC';
    spool off
    [eof]
    SQL> @gen_gt
    SQL> @gt

  • Is it possible to Deploy a SSIS package to catalog with a Sql Server Identity in SQL Server 2012 programmly ?

    Hi,
    how can I deploy a SSIS package with a SQL SERVER identity to the catalog in SQL Server 2012 programmly?
    I tried to use the [SSISDB].[catalog].[deploy_project], but the error said that it could only be used with a WINDOWS identity.
    This question has worried me for days.
    Is there any way to make the catalog.deploy_project available for a SQL SERVER identity ?
    Or just an new solution instead of using the catalog.deploy_project?
    best wishes from Qingyuan Lee.

    Sorry, my description may be confusable.
    I use EXECUTE AS , not EXECUTE WITH, to solve the problem.
    In fact,  I don't care about the authority.
    I want to execute the stored procedure using a SQL SERVER Authentication Account , since my codes run on a linux OS and it is hard to connect to SSIS using a Windows Authentication Account.
    so, using EXECUTE AS to change the execution context is accaptable.
    The requirement for a Windows Authentication Account makes sense.
    I consider that the SSIS executes outside the context of SQL Server and as part of an OS process, which means that a Windows account is necessary in order to deploy a package.
    Thanks very much for your help.

  • Help with oracle sql to get all possible combinations in a table.

    Hello guys I have a small predicatement that has me a bit stumped. I have a table like the following.(This is a sample of my real table. I use this to explain since the original table has sensitive data.)
    CREATE TABLE TEST01(
    TUID VARCHAR2(50),
    FUND VARCHAR2(50),
    ORG  VARCHAR2(50));
    Insert into TEST01 (TUID,FUND,ORG) values ('9102416AB','1XXXXX','6XXXXX');
    Insert into TEST01 (TUID,FUND,ORG) values ('9102416CC','100000','67130');
    Insert into TEST01 (TUID,FUND,ORG) values ('955542224','1500XX','67150');
    Insert into TEST01 (TUID,FUND,ORG) values ('915522211','1000XX','67XXX');
    Insert into TEST01 (TUID,FUND,ORG) values ('566653456','xxxxxx','xxxxx');
    "TUID"                        "FUND"                        "ORG"                        
    "9102416AB"                   "1XXXXX"                      "6XXXXX"                     
    "9102416CC"                   "100000"                      "67130"                      
    "955542224"                   "1500XX"                      "67150"                      
    "915522211"                   "1000XX"                      "67XXX"                      
    "566653456"                   "xxxxxx"                      "xxxxx"                       The "X"'s are wild card elements*( I inherit this and i cannot change the table format)* i would like to make a query like the following
    select tuid from test01 where fund= '100000' and org= '67130'however what i really like to do is retrieve any records that have have those segements in them including 'X's
    in other words the expected output here would be
    "TUID"                        "FUND"                        "ORG"                        
    "9102416AB"                   "1XXXXX"                      "6XXXXX"                     
    "9102416CC"                   "100000"                      "67130"                      
    "915522211"                   "1000XX"                      "67XXX"                      
    "566653456"                   "xxxxxx"                      "xxxxx"  i have started to write a massive sql statement that would have like 12 like statement in it since i would have to compare the org and fund every possible way.
    This is where im headed. but im wondering if there is a better way.
    select * from test02
    where fund = '100000' and org = '67130'
    or fund like '1%' and org like '6%'
    or fund like '1%' and org like '67%'
    or fund like '1%' and org like '671%'
    or fund like '1%' and org like '6713%'
    or fund like '1%' and org like '67130'
    or fund like '10%' and org like '6%'...etc
    /*seems like there should be a better way..*/can anyone give me a hand coming up with this sql statement...

    mlov83 wrote:
    if i run this
    select tuid,fund, org
    from   test01
    where '100000' like translate(fund, 'xX','%%') and '67130' like translate(org, 'xX','%%');this is what i get
    "TUID"                        "FUND"                        "ORG"                        
    "9102416AB"                   "1XXXXX"                      "6XXXXX"                     
    "9102416CC"                   "100000"                      "67130"                      
    "915522211"                   "1000XX"                      "67XXX"                      
    "566653456"                   "xxxxxx"                      "xxxxx"                      
    "9148859fff"                  "1XXXXXX"                     "X6XXX"                       the last item should be excluded. The second digit in "org" is a "7" Fund is wrong, too. You're looking for 6 characters ('100000'), but fund on that row is 7 characters ('1XXXXXX').
    and this is sitll getting picked up.That's why you should use the _ wild-card, instead of %
    select  tuid, fund, org
    from    test01
    where  '100000' like translate (fund, 'xX', '__')
    and    '67130'  like translate (org,  'xX', '__')
    ;It's hard to see, but, in both calls to TRANSLATE, the 3rd argument is a string of 2 '_'s.

  • Is it possible to call a webservice with just the url to its WSDL

    hi all
    can anyone tell me if it is possible to call a webservice with just the url to its WSDL file. must we create the proxy class for webservice client? thanks

    if you are in the context of a J2EE 1.4 container, you do not need to generate any stub, you can use either a dynamic proxy mechanism or dynamic invocation.
    check JWSDP tutorial.

  • I have a work iphone (4) and my personal iphone (5). Can I possibly get by with just using one phone or do I need both phones?

    I have a work iphone (4) and my personal iphone (5). Can I possibly get by with just using one phone or do I need both phones?

    Both.

  • Is it possible to run SQL*Plus with Putty?

    Hello everybody,
    I've just installed Oracle 11g on Windows Vista. When I click on SQL*Plus it opens the program in the default windows command line. I don't really like the look and feel of cmd. I would like to know whether it is possible to run SQL*Plus in a more advanced/user friendly environment such as Putty terminal client.
    Thanks in advance,
    Dariyoosh

    Kamran Agayev A. wrote:
    user8747515 wrote:
    Windows Command Line is ace! Arrow Up & Down to retrieve commnads... you don't get that (not without a rubbishy workaround) in UNIX!You can solve this issue using rlwrap package. See my vide tutorial
    http://kamranagayev.wordpress.com/2009/07/04/using-rlwrap-to-get-command-lines-history-in-sqlplus-video-tutorial/
    Dear Kamran,
    Thank a lot for this nice presentation, I had also this problem (no command history) under linux. This package is really interesting.
    Kind Regards,
    Dariyoosh

  • Is it possible to have a menu with just one button highlight when someone rolls over it?

    is it possible to have a menu with just one button highlight when someone rolls over it? if so how would you do it as i tried doing an invissble button but it didn't work?

    Get yourself a copy of Total Training for Encore DVD 1.5 by Daniel Brown.  This exact scenerio was explained in section 4) Building Menu and
    section 7) Advanced techniques.
    I refer to Dan's video time & time again.  It's from 2004 but he's still right on the mark regarding the generation of every aspect of creating a DVD.
    They now offer their entire online.
    www.totaltraining.com
    Good luck

  • How to Unpivot, Crosstab, or Pivot using Oracle 9i with PL/SQL?

    How to Unpivot, Crosstab, or Pivot using Oracle 9i with PL/SQL?
    Here is a fictional sample layout of the data I have from My_Source_Query:
    Customer | VIN | Year | Make | Odometer | ... followed by 350 more columns/fields
    123 | 321XYZ | 2012 | Honda | 1900 |
    123 | 432ABC | 2012 | Toyota | 2300 |
    456 | 999PDQ | 2000 | Ford | 45586 |
    876 | 888QWE | 2010 | Mercedes | 38332 |
    ... followed by up to 25 more rows of data from this query.
    The exact number of records returned by My_Source_Query is unknown ahead of time, but should be less than 25 even under extreme situations.
    Here is how I would like the data to be:
    Column1 |Column2 |Column3 |Column4 |Column5 |
    Customer | 123 | 123 | 456 | 876 |
    VIN | 321XYZ | 432ABC | 999PDQ | 888QWE |
    Year | 2012 | 2012 | 2000 | 2010 |
    Make | Honda | Toyota | Ford | Mercedes|
    Odometer | 1900 | 2300 | 45586 | 38332 |
    ... followed by 350 more rows with the names of the columns/fields from the My_Source_Query.
    From reading and trying many, many, many of the posting on this topic I understand that the unknown number or rows in My_Source_Query can be a problem and have considered working with one row at a time until each row has been converted to a column.
    If possible I'd like to find a way of doing this conversion from rows to columns using a query instead of scripts if that is possible. I am a novice at this so any help is welcome.
    This is a repost. I originally posted this question to the wrong forum. Sorry about that.

    The permission level that I have in the Oracle environment is 'read only'. This is also be the permission level of the users of the query I am trying to build.
    As requested, here is the 'create' SQL to build a simple table that has the type of data I am working with.
    My real select query will have more than 350 columns and the rows returned will be 25 rows of less, but for now I am prototyping with just seven columns that have the different data types noted in my sample data.
    NOTE: This SQL has been written and tested in MS Access since I do not have permission to create and populate a table in the Oracle environment and ODBC connections are not allowed.
    CREATE TABLE tbl_MyDataSource
    (Customer char(50),
    VIN char(50),
    Year char(50),
    Make char(50),
    Odometer long,
    InvDate date,
    Amount currency)
    Here is the 'insert into' to populate the tbl_MyDataSource table with four sample records.
    INSERT INTO tbl_MyDataSource ( Customer, VIN, [Year], Make, Odometer, InvDate, Amount )
    SELECT "123", "321XYZ", "2012", "Honda", "1900", "2/15/2012", "987";
    INSERT INTO tbl_MyDataSource ( Customer, VIN, [Year], Make, Odometer, InvDate, Amount )
    VALUES ("123", "432ABC", "2012", "Toyota", "2300", "1/10/2012", "6546");
    INSERT INTO tbl_MyDataSource ( Customer, VIN, [Year], Make, Odometer, InvDate, Amount )
    VALUES ("456", "999PDQ", "2000", "Ford", "45586", "4/25/2002", "456");
    INSERT INTO tbl_MyDataSource ( Customer, VIN, [Year], Make, Odometer, InvDate, Amount )
    VALUES ("876", "888QWE", "2010", "Mercedes", "38332", "10/13/2010", "15973");
    Which should produce a table containing these columns with these values:
    tbl_MyDataSource:
    Customer     VIN     Year     Make     Odometer     InvDate          Amount
    123 | 321XYZ | 2012 | Honda      | 1900          | 2/15/2012     | 987.00
    123 | 432ABC | 2012 | Toyota | 2300 | 1/10/2012     | 6,546.00
    456 | 999PDQ | 2000 | Ford     | 45586          | 4/25/2002     | 456.00
    876 | 888QWE | 2010 | Mercedes | 38332          | 10/13/2010     | 15,973.00
    The desired result is to use Oracle 9i to convert the columns into rows using sql without using any scripts if possible.
    qsel_MyResults:
    Column1          Column2          Column3          Column4          Column5
    Customer | 123 | 123 | 456 | 876
    VIN | 321XYZ | 432ABC | 999PDQ | 888QWE
    Year | 2012 | 2012 | 2000 | 2010
    Make | Honda | Toyota | Ford | Mercedes
    Odometer | 1900 | 2300 | 45586 | 38332
    InvDate | 2/15/2012 | 1/10/2012 | 4/25/2002 | 10/13/2010
    Amount | 987.00 | 6,546.00 | 456.00 | 15,973.00
    The syntax in SQL is something I am not yet sure of.
    You said:
    >
    "Don't use the same name or alias for two different things. if you have a table called t, then don't use t as an alais for an in-line view. Pick a different name, like ordered_t, instead.">
    but I'm not clear on which part of the SQL you are suggesting I change. The code I posted is something I pieced together from some of the other postings and is not something I full understand the syntax of.
    Here is my latest (failed) attempt at this.
    select *
      from (select * from tbl_MyDataSource) t;
    with data as
    (select rownum rnum, t.* from (select * from t order by c1) ordered_t), -- changed 't' to 'ordered_t'
    rows_to_have as
    (select level rr from dual connect by level <= 7 -- number of columns in T
    select rnum,
           max(decode(rr, 1, c1)),
           max(decode(rr, 2, c2)),
           max(decode(rr, 3, c3)),
           max(decode(rr, 4, c3)),      
           max(decode(rr, 5, c3)),      
           max(decode(rr, 6, c3)),      
           max(decode(rr, 7, c3)),       
      from data, rows_to_have
    group by rnumIn the above code the "select * from tbl_MyDataSource" is a place holder for my select query which runs without error and has these exact number of fields and data types as order shown in the tbl_MyDataSource above.
    This code produces the error 'ORA-00936: missing expression'. The error appears to be starting with the 'with data as' line if I am reading my PL/Sql window correctly. Everything above that row runs without error.
    Thank you for your great patients and for sharing your considerable depth of knowledge. Any help is gratefully welcomed.

  • Query SAP Database with Native Sql.

    Hi,
    I would like to query the table MARA with native sql and return all headings and data
    Select * from MARA where MATNR = '00000000151515'          
    <i>I need this to be able to TEST my Sql statements.</i>
    In SqlServer you have the Query Analyser where I can do just this, but is there some nice in SAP Tool for this as well ?
    [Unfortanely I can't connect to SAP_U01 database from QA...]
    //Martin

    Hi Martin,
    maybe you give ST05 a try: last button gives the possibility to enter a SQL-statement directly - and for explanation it has to be executed (somehow).
    Regards,
    Christian

  • DB2 problems with Dynamic SQL

    Does anyone out there use dynamic SQL with DB2? If so, are the sql statements causing a PreparedStatement to be executed on DB2. I posted this question similarly before, but never resolved it, and it is killing me. I have to resolve this ASAP!
    Here is the problem: My DB2 Admin says that EVERY TIME I access the database, my Java app is causing the database to create a PreparedStatement. However, I'm using Statement objects exclusively, with dynamic SQL. He says that DB2 needs an "access path" for the client, and that it converts the Statement to a PreparedStatement, as this is the only way to get this "access path". He says the only solution is either stored procedures or SQLJ, which will do the binding in advance, and increase performance tremendously. However, I am STRONGLY opposed to using SQLJ, and if we do stored procedures, we'd have to write one for every possible SQL statment! I KNOW there is a better solution.
    Is anyone out there having these problems with JDBC and DB2? Surely someone out there uses DB2 and JDBC and either has these problems or can confirm that something is incorrectly configured on the database side.
    Any help would be great. Thanks, Will

    Now I'm wondering if maybe the PreparedStatements are ONLY being called on the database when I call getConnection(), and not when I call executeQuery() or executeUpdate() from the Statement object. I just can't see why the database would have to make an access path for every SQL statement executed, but I could see it creating an access path for every connection requested. Any thoughts on that theory?

  • I need to host a website with a SQL database - Azure pricing details are too confusing

    Hello,
    I need to give a potential client a hosting price for a somewhat simple web application they want me to build. I told them it shouldn't be a problem. After gathering the requirements, I figured I would use the following technology to build and host
    it:
    ASP.NET 4.5
    MVC 5
    1 SQL Database ~ 25GB with options to expand and also with a backup
    SSL certificate needed
    Hosting would be on Azure because I have some experience using Visual Studio 2012 and integrating the Visual Studio Online (TFS) source code and scrum web applications. I've never actually spun up a website with a SQL database using Azure before, but I
    imagined it wasn't too difficult to find a general hosting plan to support the above requirements.
    The use of the website will be very simple and limited to the basic CRUD operations. Will support forms authentication using the Identity 2.0 framework. The web applications main purpose is to fill out a form for new accounts, have a search page for
    those accounts, a page to view a created account and add notes to it. So performance wise, it isn't asking for much. I just want it to be fast and secure.
    So I start looking on the Azure's pricing landing page which is here: (can't put links in here, but search Azure pricing on Bing) and I see this Pricing Calculator, so I click it
    First thing I notice is the Websites tab doesn't mention SQL Database - in fact the Data Management is a separate tab from Websites. And if I made my selections on the Websites tab, the estimated monthly price doesn't stay the same when I go to the Data
    Management tab - so I get the illusion I have to have two separate purchases.
    I'm not exactly sure if the Pay as You Go billing feature would be okay because it's just a bit scary to leave every monthly payment up to chance; somewhat. Would love to know if there is other payment options that I could see for what I described above.
    I want to use Azure to host my asp.net website - it makes sense and the integration with Visual Studio is amazing. I love the publish feature for both MVC 5 Projects and SQL Database Projects.
    Thanks in advance for the help!

    Hello jdevanderson,
    I suggest that you start by looking at the pricing TIERS for the Azure website. This link will give you clarity on different Service TIERS that are availaible:
    http://azure.microsoft.com/en-in/pricing/details/websites/
    You can guage your requirement and choose the Service TIER accordingly.
    And regarding the database, you are right about it. You will be charged seperately for the database. You can refer to this link that will give you clarity on SQL database pricing:
    http://azure.microsoft.com/en-in/pricing/details/sql-database/
    Refer to this link for more information on 'How pricing works':
    http://azure.microsoft.com/en-in/pricing/
    Use the full calculator to add your website and the database to get an estimated cost:
    http://azure.microsoft.com/en-in/pricing/calculator/?scenario=full
    Thanks,
    Syed Irfan Hussain

  • To save time, could I get away with just using ProRes Proxy?

    Might be a dumb question.  But please play along with me...
    I've been battling with FCP-X since it first came out.  Beach balls, crashes, failed auto saves, you name it.  Sluggishness is my middle name.  But I think it might be because I'm trying to force too much quality through my older, less powerful machines and my little firewire 400 hard drive.  All three of my Mac are 3-4 years old, all are from the old "Core 2 Duo" era (not quad core processors), and are all maxed out at 4GB of RAM.  While I've read that many people are having performance problems with FCP-X even on brand spankin' new suped-up Mac Pros with lots more horsepower than I'm running, I've long thought that my machines and their lack of power by today's standards may be at the heart of my sluggishness problem, especially given that most of the material I work with is shot in 1080 HD.  (I've never actually tested it in FCP-X, but I'm assuming that things would speed along more like I've been used to in the past if I would just do everything in Standard Definition 480, but that ain't gonna happen.)
    Like many, I shoot most everything in 1080 HD (usually 24p, sometimes 30), unless I'm occasionally shooting 720 HD at 60i for later slowing down to slo-mo.
    Here's my question:  Most everything I edit is for web delivery, and 99 percent of it is for my own use (not clients).  Mostly podcast-like stuff, although occasionally I'll create something for my business website.  Most of what I do is talking head type stuff, not a lot of motion (except for the 720/60i slo-mo stuff, which usually has some motion, which is why I shoot it at 60i for slowing down).  Most of what I shoot is green screen talking heads, intended to be keyed in front of some innocuous background like some of the generators in FCP-X.  I want it to look good.  Even great.  But given the limitations of power on my machines, I also don't want to invest an eternity in rendering and processing time.  The work I'm doing with video just isn't that important.  It's mostly for grins.
    Until last night, I had been working exclusively in ProRes422 (aka "Optimized").  But last night I shot some footage and imported it into FCP-X, encoding it ONLY in ProRes Proxy.  And frankly, I couldn't discern any difference.  It looked every bit as good as the 422 stuff I'd shot before.  There was absolutely no difference to my naked eye.  That said, the footage I shot last night to test this out was not shot in front of the green screen (I'll test that out today or tonight), so maybe the Proxy footage won't key as well.  (I've been stunned at how good the keyer is in FCP-X, but up to this point I've only been keying ProRes422 footage, not Proxy.)  But really, based on just eyeballing the footage, I couldn't tell the difference between the Proxy footage and all the other footage I'd shot previously that had been imported and converted to "Optimized" ProRes422.
    I'm not looking to deliver anything for broadcast television (if I were, I'd for sure use 422).  I'm not doing any feature film type stuff.  My video work consists mainly of stuff just for me, for my own personal amusement (and for the amusement of anyone who might watch it on the web).  It's intended for YouTube, Vimeo, or occasionally (in smaller dimensions than 1920x1080) for deployment on my company website.  Mostly, it's just me doing podcast-type stuff.  Occasionally I'll shoot and edit something for church, or for friends.  I like to think the production values of my stuff tend to be higher than, say, the footage Aunt Delores shot at Uncle Ralph's birthday party (okay, A LOT higher than that!).  But my stuff isn't going to air on "Good Morning Flatbush" either (unless, on the off chance it should happen to go viral).
    So let me make my question as clear as possible:  Could I not get away with just using ProRes Proxy throughout my entire work flow, end to end, never switching over to ProRes 422 even when exporting?  Honestly, it has taken hours just to render the keyed green screen footage on a 15 minute video, and just the other night, it took the better part of 4 hours (after it was already rendered) to export a 15 minute ProRes422 sequence to YouTube (and then the darn thing timed out, essentially wasting all my time).  I'd rather just stay in Proxy the whole way through if doing so would streamline my workflow without compromising too much quality in the "look" of the video.  Based on my very limited use of Proxy (just testing it out last night for the first time), I couldn't tell the difference.  Maybe for web deployment, Proxy is all I really need.
    Have any of you just stayed in Proxy the whole way through, never switching to 422 even when exporting?  Might this be an acceptable work flow for some of us, especially those of us on older, less powerful machines?  Is this a viable solution?  Do any of you work this way?  What's your level of satisfaction?
    Thoughts?

    A lot of what I'm shooting is being shot on a Canon XA-10.  Some (and certainly all of the 720 footage, but some of the 1080) is shot on a 7D.  And still more is shot on either an iPhone 4S, or even on a Flip Ultra (720p, 30fps).
    Most is shot on the XA-10.
    What I'm trying to avoid is the excessive render times (doesn't the ProRes 422 footage have to render as well?), and the ridiculously long times it takes to export.  Would all that not be reduced significantly by sticking to Proxy the whole way?  And what would the trade-off be?  I mean, I honestly can't see any discernible difference.  Maybe I will when I try to pull a decent key.  (Haven't gotten that far yet in my Proxy experimentation.)
    Of course, editing in Proxy and outputting using 422 requires that FCP-X encode to BOTH when importing, right?  Doesn't that add yet another bit of time to the overall process?
    I'm trying to streamline, and to reduce the overall amount of time I'm spending doing this stuff.

  • Interactive Report with PL/SQL Function Source

    Is it possible to create interactive report with PL/SQL function source returing a query? If not, has anyone done any work to simulate the interactive reporting feature for a normal report using API?

    I haven't tried that before but you could:
    1. create a collection from your result set returned by a dynamic query,
    2. create a view on that collection,
    3. use the view in your interactive report.
    The usability of this proposal depends from a question how "dynamic" your query is - does it always have the same number of columns or not.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

Maybe you are looking for

  • How can i write a sign string in VISA Write?

    Hello everybody. I would like someone to help me. I have an array, which is transformed (by Byte Array to String) in a string that reaches the VISA Write Serial Port. My problem is that when making the transformation with Byte Array to String, i  los

  • Messages on Yosemite quit syncing

    Hello, I have been using Messages on OSX for a while now, but all of a sudden yesterday it quit working. I will skip through a bunch of troubleshooting. I found that I can create a new user account and Messages works fine in the new account. Therefor

  • Transform Gradient Tool center pt keeps appearing on the left edge of the stage and it's annoying..

    I'm editing gradients in small areas.  When I want to edit the gradient fill of a small shape, I have to zoom all the way out because the center of the gradient is on the left edge of the stage somewhere.  I'm getting a little tired of dragging the c

  • Multiple instances of weblogic server 5.1 on one node.

    Hi, We failed to start one instance on a node where we were able to start another instance from another location. We installed two instances of Weblogic server 5.1 on Solaris 5.7. One at /usr/weblogic and another at /opt/weblogic. We were able to sta

  • ERROR with X server [urgent]

    Hi friends, [Using: Oracle Aplications 11.5.7 and DB 8.1.7] I've just finishing a clonning process and almost everything works OK except one thing: The X server in Database (I think) After cloning, I've run the AOLJTEST and checked all the links, eve