Create the Collection with shuttle

It's using Apex 3.2

I have a shuttle, and I need to create a collection based on the values of the shuttle.

I try to use APEX_COLLECTION. CREATE_COLLECTION_FROM_QUERY_B, but keep a mistake.

My code is

BEGIN

IF apex_collection.collection_exists ('VPE_STORE_GROUP_COL') = TRUE THEN

apex_collection.delete_collection (p_collection_name = > 'VPE_STORE_GROUP_COL');

END IF;

APEX_COLLECTION. () CREATE_COLLECTION_FROM_QUERY_B

p_collection_name = > 'VPE_STORE_GROUP_COL ',.

p_query = > ' select CLOCKEY, GRPKEY, substr(GRPLONGDESCR,1,50), GRPTYPEKEY,.

substr (GRPTYPELONGDESCR, 1, 50), CLOCID, CLOCGRPID, LDEID

of v_vpe_bas_cloc2clocgrp

where IN CLOCGRPID (: P32_SHUTTLE)

GRPKEY, GRPTYPEKEY, CLOCKEY order ');

END;

I have this like we charge before procedure header, but I get the error

ORA-20104: create_collection_from_query_b error: ORA-20104: create_collection_from_query ExecErr:ORA - 01008: not all variables

Can someone tell me where I'm wrong

Gus

Hello

Can you reproduce this on apex.oracle.com ?

Kind regards
Jari

Tags: Database

Similar Questions

  • How to create the table with the description of the table

    Hello

    I would like to create the array with the description of the table (such as the creation of package or procedure with comments).

    Is it possible to achieve thanks to the oracle, if possible please help me achieve this goal.

    Thank you and best regards,

    Ibrahim Sayyed.

    > create table test (col1 number);

    > comment table test is "about a comment ';

    > select comments from user_tab_comments where table_name = 'TEST ';

    COMMENTS
    ____________________________________________________________________
    This is a comment

  • Create the database with a set of characters

    Hello

    I need to create a database with the character US8PC437 (platform Linux Redhat 5.4 64-bit, database version 11.2.0.3), but this character set do not appear when I create the database with the database assistant (DBCA).

    Any help will be apreciated.


    Best regards

    Antonio Serrano

    Published by: albrotar on March 6, 2012 09:14

    While AL32UTF8 is certainly recommended for the Oracle database character set, use only, if your application provider has confirmed that their application will work with a set of characters to multibyte database.

    To create a database US8PC437 (it is rarely a choice, in fact) with DBCA 11.2, select the "character sets" tab, once shown, then select the option 'Choose from the list of character sets' and uncheck 'Show recommended only character sets '. This will add US8PC437 to the "Database character set" drop-down list. Select "US8PC437" from the list and continue the process of creation.

    But first, contact your provider and ask a compatible Unicode version of your application.

    -Sergiusz

  • Creating the table with time stamp

    I need to create the table with the data inside buffer

    Can you help me pls

    If it works today,

    create the table test_04NOV2010 in select * from product where product_code = '101'

    If executed tmrw,

    create the table test_05NOV2010 in select * from product where product_code = '101'
    declare
    
    v_date varchar2(25);
    v_sql  varchar2(20);
    
    begin
    
    select to_char(sysdate,'DDMONYYYY') into v_date from dual;
    
     v_sql := ' create table ' ||TEST||'_'||'v_date'|| 
                 ' as '
                 ' select * from Product where product_code = '101'
              
     EXECUTE IMMEDIATE v_sql;
    
    end;
    can is it you pls let me know how to use it in PL SQL

    Can you help me pls

    Thank you very much
    declare
    
    v_date varchar2(25);
    v_sql  varchar2(2000); --Noted this. this was also small.
    
    begin
    
    select to_char(sysdate,'DDMONYYYY') into v_date from dual;
    
     v_sql := ' create table TEST_'||v_date||
                 ' as select * from Product where product_code = ''101''';
    
     EXECUTE IMMEDIATE v_sql;
    
    end;
    

    You can use the Q operator also.

    DECLARE
    
    v_date varchar2(25);
    v_sql  varchar2(2000);
    
    BEGIN
    
    select to_char(sysdate,'DDMONYYYY') into v_date from dual;
    
     v_sql := ' create table TEST_'||v_date||
                Q'[ as select * from Product where product_code = '101']';
    
     EXECUTE IMMEDIATE v_sql;
    
    END;
    

    Published by: mohamed on November 4, 2010 05:32

  • Create the collection of query with bind variable

    Apex 4.0.2

    By Joel Re: Collection with variable binding the apex_collection.create_collection_from_query_b supports queries containing references to the bind variables (: P1_X) but I don't know how to use this feature, the documentation is not an example, just the API signature for the overloaded version has changed.

    If the query contains 2 bind session state variable references (: P1_X and: P1_Y), can someone please show an example of what to spend for the parameters p_names and p_values to the API?

    Thank you
    procedure create_collection_from_query_b(
        --
        -- Create a named collection from the supplied query using bulk operations.  The query will
        -- be parsed as the application owner.  If a collection exists with the same name for the current
        -- user in the same session for the current Flow ID, an application error will be raised.
        --
        -- This procedure uses bulk dynamic SQL to perform the fetch and insert operations into the named
        -- collection.  Two limitations are imposed by this procedure:
        --
        --   1) The MD5 checksum for the member data will not be computed
        --   2) No column value in query p_query can exceed 2,000 bytes
        --
        --
        -- Arguments:
        --     p_collection_name   =  Name of collection.  Maximum length can be
        --                            255 bytes.  Note that collection_names are case-insensitive,
        --                            as the collection name will be converted to upper case
        --     p_query             =  Query to be executed which will populate the members of the
        --                            collection.  If p_query is numeric, it is assumed to be
        --                            a DBMS_SQL cursor.
        -- example(s):
        --     l_query := 'select make, model, caliber from firearms';
        --     apex_collection.create_collection_from_query_b( p_collection_name => 'Firearm', p_query => l_query );
        --
        p_collection_name in varchar2,
        p_query           in varchar2,
        p_names           in wwv_flow_global.vc_arr2,
        p_values          in wwv_flow_global.vc_arr2,
        p_max_row_count   in number default null)
        ;

    HELEN wrote:
    Apex 4.0.2

    By Joel Re: Collection with variable binding the apex_collection.create_collection_from_query_b supports queries containing references to the bind variables (: P1_X) but I don't know how to use this feature, the documentation is not an example, just the API signature for the overloaded version has changed.

    If the query contains 2 bind session state variable references (: P1_X and: P1_Y), can someone please show an example of what to spend for the parameters p_names and p_values to the API?

    Not tried, but guess something like

    apex_collection.create_collection_from_query_b(
        p_collection_name => 'foobar'
      , p_query => 'select f.foo_id, b.bar_id, b.baz from foo f, bar b where f.foo_id = b.foo_id and f.x = to_number(:p1_x) and b.y = :p1_y'
      , p_names => apex_util.string_to_table('p1_x:p1_y')
      , p_values => apex_util.string_to_table(v('p1_x') || ':' || v('p1_y')))
    
  • Create the collection of photos used in a book

    I have a collection of close to 800 photos. Created a page of book layout using about 80 photos. I see the film in the book module, I see that some of them are marked with '1' to indicate that they are used in the book. So far so good. I would like to create a collection (or in some sort of filter) include only 80-or-so pictures used in the book. Is this possible in LR5?

    Found a way...

    -create a new collection and set it as the target

    -Open book

    -Click/Select each photo (one at a time)

    -Press b to add it to the target collection

    Must select each photo in the book, but it's pretty fast...

  • Bug trying to create the link with the Cyrillic characters in URL

    I'm transforming words in my text on the links, but with Cyrillic characters in their URL (such as https://en.wiktionary.org/wiki/ хорошо). The problem is that, depending on how create the link, the page refuses to accept the URL.

    It's my preferred method (which accepts not the Pages):

    1. Write or select the text to be transformed into link;
    2. Press cmd + k;
    3. Paste the URL (https://en.wiktionary.org/wiki/ хорошо) in the field;
    4. Hit enter or click out;
    5. When I check the link, it is www.apple.com.

    The strange is that other methods work very well.

    1 against nature (accepts Pages):

    1. Delete my word;
    2. In its place, paste the URL (https://en.wiktionary.org/wiki/ хорошо);
    3. Hit the space bar (a link is created automatically with the correct URL);
    4. Edit the link that is created and change its text;
    5. When I check the link, he kept correct.

    2 against nature (accepts Pages):

    1. Write or select the text to be transformed into link;
    2. Press cmd + k;
    3. Find a way to build a version with my URL (https://en.wiktionary.org/wiki/%D1%85%D0%BE%D1%80%D0%BE%D1%88%D0%BE) escape sequence;
    4. Paste the URL with escape sequence in link field;
    5. Hit enter or click out;
    6. When I check the link, ironically, is хорошо https://en.wiktionary.org/wiki/.

    To stretch more:

    1. Editing a link created successfully (with any success methods above);
    2. Changed its URL (from хорошо https://en.wiktionary.org/wiki/ to https://en.wiktionary.org/wiki/ плохо)
    3. Hit enter or click out;
    4. When I check the link, it's still хорошо https://en.wiktionary.org/wiki/;
    5. Finally edited and changed its URL still once, now remove the Cyrillic (https://en.wiktionary.org/wiki);
    6. Press enter, click out and he finally accepted the URL.

    Pages seems to be denying the creation of links with the URL that contains Cyrillic characters (only?), but exclusively through his little creation of link popup. I think it's a simple problem, but I'm sure it's very annoying.

    Everyone knows the same?

    Cyrillic characters in the range of table encoding UTF-8 code points u + 0400 - u + 04 FF are represented by two bytes. These people must be encoded as a percentage (read the two paragraphs of the current standard of article), as the Pages v5.6.2 will convert automatically URI to this encoding for you in the link Inspector. It will simply ignore what it considers incorrect URI links, they are Cyrillic, or even English.

    Use what is easier for you, and that Pages v5.6.2 accepts.

  • What does that say "automation server can't create the object" with undefined is null or not an object

    I get these pop ups on an application I have to access it through a company VPN

    Hello charliedoodle,

    Given that the application tries to reach a Web site through the VPN to your business, you should check with your integrated personnel.
    They may have a problem on the server, or may have set a new strategy group. We would not be able to help with this issue.

    However, you can watch the following article which addresses the error message you receive.
    Click the number of the KB article to revise article.
    KB Article ID: 323885 -error message in Visual Studio: "Automation server cannot create the object.

    I hope this helps.

    Sincerely,

    Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • problem of traffic flow with tunnel created the network with a tunnel to a VPN concentrator

    Hi, I worked with Cisco and the seller for 2 weeks on this.II am hoping that what we are witnessing will ring a Bell with someone.

    Some basic information:

    I work at a seller who needs from one site to the other tunnel.  There are currently 1 site to another with the seller using a Juniper SSG, which works without incident in my system.  I'm transitioning to routers Cisco 2811 and put in place a new tunnel with the seller for the 2800 uses a different public ip address in my address range.  So my network has 2 tunnels with the provider that uses a Cisco VPN concentrator.  The hosts behind the tunnel use 20x.x.x.x public IP addresses.

    My Cisco router will create a tunnel, but I can't not to hosts on the network of the provider through the Cisco 2811, but I can't get through the tunnel of Juniper.  The seller sees my packages and provider host meets them and sends them to the tunnel.  They never reach the external interface on my Cisco router.

    I'm from the external interface so that my endpoint and the peers are the same IP address.  (note, I tried to do a static NAT and have an address of tunnel and my different host to the same result.)  Cisco has confirmed that I do have 2 addresses different and this configuration was a success with the creation of another successful tunnels toa different network.)

    I tested this configuration on a network of transit area before moving the router to the production network and my Cisco 2811 has managed to create the tunnel and ping the inside host.  Once we moved the router at camp, we can no longer ping on the host behind the seller tunnel.   The seller assured me that the tunnel setting is exactly the same, and he sees his host to send traffic to the tunnel.  The seller seems well versed with the VPN concentrator and manages connections for many customers successfully.

    The seller has a second VPN concentrator on a separate network and I can connect to this VPN concentrator with success of the Cisco 2811 who is having problems with the hub, which has also a tunnel with Gin.

    Here is what we have done so far:

    (1) confirm the config with the help of Cisco 2811.  The tunnel is up.  SH cyrpto ipa wristwatch tunnel upward.
    (2) turn on Nat - T side of the tunnel VPN landscapers
    (3) confirm that the traffic flows properly a tunnel on another network (which would indicate that the Cisco config is ok)
    (4) successfully, tunnel and reach a different configuration hosting
    (5) to confirm all the settings of tunnel with the seller
    (6) the seller confirmed that his side host has no way and that it points to the default gateway
    (7) to rebuild the tunnel from scratch
    8) confirm with our ISP that no way divert traffic elsewhere.  My gateway lSP sees my directly connected external address.
    (9) confirm that the ACL matches with the seller
    (10) I can't get the Juniper because he is in production and in constant use

    Is there a known issue with the help of a VPN concentrator to connect to 2 tunnels on the same 28 network range?

    Options or ideas are welcome.  I had countless sessions with Cisco webex, but do not have access to the hub of the seller.  I can forward suggestions.

    Here's a code

    crypto ISAKMP policy 1
    BA 3des
    md5 hash
    preshared authentication
    Group 2
    !
    crypto ISAKMP policy 2
    BA 3des
    preshared authentication
    Group 2

    Crypto ipsec transform-set mytrans aes - esp esp-sha-hmac

    Crypto-map dynamic dynmap 30
    Set transform-set RIGHT

    ISAKMP crypto key address No.-xauth

    interface FastEthernet0/0
    Description $ETH-LAN$$ETH-SW-LAUNCH$$INTF-INFO-FE $ 0/0
    IP 255.255.255.240
    IP access-group 107 to
    IP access-group out 106
    NAT outside IP
    IP virtual-reassembly
    route IP cache flow
    automatic duplex
    automatic speed
    crypto mymap map

    logging of access lists (applied outside to get an idea of what will happen.  No esp traffic happens, he has never hits)

    allowed access list 106 esp host host newspaper
    106 ip access list allow a whole
    allowed access list 107 esp host host Journal
    access-list 107 permit ip host host Journal

    access-list 107 permit ip host host Journal
    107 ip access list allow a whole

    Crypto isa HS her
    IPv4 Crypto ISAKMP Security Association
    status of DST CBC State conn-id slot
      QM_IDLE ASSETS 0 1010

    "Mymap" ipsec-isakmp crypto map 1
    Peer =.
    Extend the 116 IP access list
    access - list 116 permit ip host host (which is a public IP address))
    Current counterpart:
    Life safety association: 4608000 kilobytes / 2800 seconds
    PFS (Y/N): N
    Transform sets = {}
    myTrans,
    }

    OK - so I have messed around the lab for 20 minutes and came up with the below (ip are IP test:-)

    (4) ip nat pool crypto-nat 10.1.1.1 10.1.1.1 prefix length 30 <> it comes to the new address of NAT

    !
    (1) ip nat inside source list 102 interface FastEthernet0/0 overload <> it comes to the interface by default NAT

    !
    IP nat inside source map route overload of crypto-nat of crypto-nat pool <> it is the policy of the NAT function

    !

    (6) access-list 101 permit ip 172.16.1.0 0.0.0.255 172.16.2.0 0.0.0.255 <> defines the IP source and destination traffic

    !

    (2) access-list 102 deny ip 172.16.1.0 0.0.0.255 172.16.2.0 0.0.0.255 <> does not NAT the normal communication

    (3) access-list 102 deny ip 10.1.1.1 host 172.16.2.0 0.0.0.255 <> does not re - NAT NAT

    (1) access-list 102 permit ip 172.16.1.0 0.0.0.255 any <> allows everyone else to use the IP Address of the interface for NAT

    !

    (5) crypto-nat route-map permit 5 <> condition for the specific required NAT
    corresponds to the IP 101 <> game of traffic source and destination IP must be NAT'td

    (7) access list 103 permit ip 10.1.1.1 host 172.16.2.0 0.0.0.255 <> crypto acl

    Then, how the works above, when a package with the what IP 172.16.1.0/24 source wants to leave the router to connect to google, say the source will change to IP interface (1).  When 172.16.1.0/24 wants to talk to172.16.2.0/24, it does not get translated (2).  When the remote end traffic equaled the following clause of NAT - the already NAT'td IP will not be affected again (3) when a host 172.16.1.0/24 wants to communicate with 172.16.2.20/24 we need a NAT NAT specific pool is required (4).  We must define a method of specific traffic to apply the NAT with a roadmap (5) which applies only when the specific traffic (6), then simply define the interesting traffic to the VPN to initiate and enable comms (7) corresponding

  • Create the user with privileges only data entry.

    Hello guys,.

    A very basic question. I created the request of APEX, well obviously the user with whom I created this application has developer access, now I want to create a user who is able to see the developed application, I tried to find the user options, but could not.  Someone can help me to find the option, I need to follow, so that the newly created user is only able to enter data into forms and run reports and should not be able to make changes in the application developed.

    Concerning

    Faisal Niazi says:

    A very basic question. I created the request of APEX, well obviously the user with whom I created this application has developer access, now I want to create a user who is able to see the developed application, I tried to find the user options, but could not.  Someone can help me to find the option, I need to follow, so that the newly created user is only able to enter data into forms and run reports and should not be able to make changes in the application developed.

    Create 'end users' by selecting No for the user is an administrator of the workspace and the user is a developer account privilege options create new user accounts. These users connect to the APEX Application Builder. It can be given direct access to a request by specifying the ID of the application or alias to the URL:

    apex.oracle.com/pls/apex/f?p=

    or

    apex.oracle.com/pls/apex/f?p=

    Using an alias for the application is recommended.

    To restrict user access to pages, components and specific applications, create authorisation schemes and the apply to the application level.

  • Compare the Collection with the help of the Table less

    Hey there!

    my plan is to transfer an excel file and record in an apex_collection, compare the results with those that already exist in a specific table and write it in another temporary table.

    Import excel, in the collection works perfectly, but I fight with the comparation. I select the form of entries collection and using UNMIS to compare lines with those of another SELECTION that gets the lines of the existing table.

    DECLARE

    BEGIN

    INSERT INTO UPLOADED_DID_LIST_COMP (BAC_CODE, UPSC)

    (

    SELECT BAC_CODE c001

    c002 published

    From apex_collections ca

    WHERE collection_name = "UPLOADED_EXCEL."

    LESS

    SELECT

    BAC_CODE

    EDITED

    OF UPLOADED_DID_LIST upld, apex_collections c WHERE

    collection_name = "UPLOADED_EXCEL."

    AND the upld. BAC_CODE = c.C001

    AND the upld. LʼUPSC = c.C002

    );

    End;

    This does not work because of this error:

    ORA-00933: SQL command not properly ended ORA-06550

    PLS-00103: encountered the symbol "end-of-file" when awaits one of the following numbers: (begin case declare exit end exception for goto rise back loop mod null pragma select update while < ID > < a quot double)

    If it's a copy/paste of your exact code then you just need to fix it, spaces here and there. And remove the superfluous where clause. Maybe:

    BEGIN

    INSERT

    IN UPLOADED_DID_LIST_COMP

    (

    BAC_CODE, SCHOOLING

    )

    (

    C001 SELECT BAC_CODE, EDITED C002

    FROM APEX_COLLECTIONS CA

    WHERE COLLECTION_NAME = "UPLOADED_EXCEL."

    LESS

    SELECT BAC_CODE, SCHOOLING

    OF UPLOADED_DID_LIST UPLD

    );

    END;

    Good luck.

  • How to create the event with the parameter schematically

    Hello

    I created the button schematically, I want to pass the parameter for this event.

    And I must capture this setting in LICS pls help someone.

    OASB OASubmitButtonBean = (OASubmitButtonBean) pageContext.getWebBeanFactory () .createWebBean (pageContext, "BUTTON_SUBMIT");

    oasb.setID ("ZoomBtn");

    oasb.setUINodeName ("ZoomBtn");

    oasb.setEvent ("Zoomeve");

    oasb.setText ("zoom");

    webBean.addIndexedChild (oasb);

    OASubmitButtonBean zoomBt = (OAButtonBean) webBean.findChildRecursive ("ZoomBtn");

    If (zoomBt! = null) {}

    Hashtable paramsWithBinds = new Hashtable (2);

    paramsWithBinds.put ("PoHeaderId", new OADataBoundValueFireActionURL (webBean (OAWebBeanData),

    "{$PoHeaderId}"));

    FireAction = firePartialAction

    OAWebBeanUtils. getFireActionForSubmit (zoomBtn, "openCustRefDetForm", null, paramsWithBinds, true, true);

    zoomBtn.setAttributeValue (PRIMARY_CLIENT_ACTION_ATTR, firePartialAction);

    }

    But it gives the following error.

    • Error (50.9): method getFireActionForSubmit (oracle.apps.fnd.framework.webui.beans.nav.OAButtonBean, java.lang.String, null, com.sun.java.util.collections.Hashtable, boolean, boolean) could not be found in the oracle.apps.fnd.framework.webui.OAWebBeanUtils class

    Dilip salvation,

    Thanks for your replay instance it works fine.

    Good answer,

    Instead of

    import com.sun.java.util.collections.Hashtable;

    We have to import

    import java.util.Hashtable;

    Kind regards

    Sangu

  • Create the cluster with existing Virtual Machines

    This will seem like an easy question, but I have 3 5.0 ESXi hosts managed by vCenter. We recently purchased a SAN and I would like to set up a cluster, can I do it with running on the existing VMS host computers and then to migrate in the SAN that I have create the cluster?

    If the hosts and the BIOS settings are the same there should not be a problem with placing them in a cluster. Displacement of that virtual machine to the San can be made as soon as the hosts are connected to him, it is not the members of classes.

    André

  • create the database with Oracle Client link

    Hello together,

    on my machine Windows 7 with Oracle Client installed 12.0.1.0, I'm trying to create a database link to a database server, which runs on Oracle Standard Edition1 11.2.0.2.

    When I connect to sqlplus on the client with "sqlplus/nolog" and type the command:

    SQL > create SID of the database link

    connect to the user identified by passwd

    using "tnsnames.ora connection."

    I have a SP2-0640: not connected. OK, it is clear, because I use sqlplus with option/nolog. But client-side normally I have no database, where I can connect. So I think, there is no user, or?

    The database to which I want to connect is located in tnsnames.ora.

    Generally: Is it possible to use the Oracle Client to create a database link? Maybe there's another way to do this?

    A big thank you and best regards,

    David

    You don't seem to understand the concept of a database link.

    A database link connects two databases. Not a client and a database.

    You need to link up in a data source to a target database.

    The only thing you need is a client of sqlplus in sqlplus client, you need to connect to the source database.

    If you can't connect to the source database, you must present the statement to someone.

    Sybrand Bakker

    Senior Oracle DBA

  • Create the file with pl/sql procedure

    Hi all

    I do not know how to create a file that will contain the data of the select statements. I'm leaving again in oracle and pl/sql, and I apologize in advance for the questions of the rookie.

    CREATE OR REPLACE PROCEDURE ECM_DATA.check_pad

    IS

    v_padron_check VARCHAR2 (50);

    v_padron_number VARCHAR2 (50);

    BEGIN

    SELECT count (pd.estado)

    IN v_padron_check

    OF par6.padrones_datos pd,.

    PAR6.padrones p,

    PAR6. Fechas f

    If pd.estado not in ('2000 ', 8000')

    AND PD. FILE = P.ARCHIVO

    AND P.FECHA = F.fech_s;

    DBMS_OUTPUT. Put_line ('Št. neuspešnih zapisov: ' | v_padron_check);

    FOR (IN) pad

    SELECT pd.archivo

    OF par6.padrones_datos pd,.

    PAR6.padrones p,

    PAR6. Fechas f

    WHERE the pd.estado not in ('2000 ', 8000')

    AND pd.archivo = p.archivo

    AND P.FECHA = F.fech_s

    )

    LOOP

    dbms_output.put_line (' Padrón št.: ' | pad.archivo);

    END LOOP;

    END;

    /

    Thanks for any help.

    Kind regards

    Robert

    Hi user8660054,

    If you want to create the file on the server where your DB is installed and then use that I provide you. It requires a DIRECTORY (with read/write privileges) to create.

    You can use my proc as below...

    Start

    generic_report_genrtr (p_query_in => ' Select * from user_tables ',)

    p_separator => ","-a comma separated values

    p_dir_in-online "nom_repertoire."

    p_filenm_in-online "OUTPUT_FILE_NM") IS

    end;

Maybe you are looking for

  • I want to use Siri on my Mac Pro 2013, but there is no built-in microphone.

    Great so Siri is now activated on your desktop with Sierra. How can I add an Apple flagship computer microphone, the 2013 Pro Mac in a cost-effective manner? It's not even a microphone jack! Help, please!

  • What does the J on my photos?

    What is the small icon of J? It is only on a few photos and only on pictures are taken with my Canon DSLR, not on any of my photos from the iPhone.

  • Poster works does not as expected with Adobe CS5

    I've finally updated to OS X on an early 2009 Mac Pro Quad Core. I have two screens: a 20 "Apple Cinema and a Samsung Syncmaster. Previously, always with Snow Leopard, I had no problem with the implementation of my menus, panels, etc on the Samsung,

  • Printing issues cartridge empty?

    Some changes of two cartrideges and all systems say the ink levels are full... the itse printer; f prints and I can print a diagnostic computer hoever page when printing anything else it is said that the two cartridges are empty replace and try again

  • Sail back to a remote resource in the Visual Studio plug-in

    Environment: 32-bit Windows 7, latest development environment Sun's Java, Visual Studio 8 most recent plugin beta BlackBerry 9700 Simulator works very well in the white list remote .NET/ASP/SQL Server 2008 to use as remote as possibly .asp page direc