For only thoes who knows about import export

hi all
system: windows2000 / oracle 8i
database : orcl schema = dbc
i put this command for exporting.
export
c:\ exp dbc/dba full=y file=d:\6feb.dmp log=d:\6feb.log
import
imp uzma/uzma file=d:\6feb.dmp fromuser=dbc touser=uzma log=d:\imp.log
it successfully exported
but when i want to import this dmp file to another system
or on another schema it does not import it shows an error
Connected to: Oracle8i Enterprise Edition Release 8.1.5.0.0 - Production
With the Partitioning and Java options
PL/SQL Release 8.1.5.0.0 - Production
Export file created by EXPORT:V08.01.05 via conventional path
Warning: the objects were exported by DBC, not by you
import done in WE8ISO8859P1 character set and WE8ISO8859P1 NCHAR character set
. . importing table "FACULTY"
IMP-00058: ORACLE error 911 encountered
ORA-00911: invalid character
. . importing table "FACULTY_ADM"
IMP-00058: ORACLE error 911 encountered
ORA-00911: invalid character
tell me what can i do i put the same question thousand time on
this forum but no useful answer received what should i do pl
write all possible thing becoz my windows is creating problems
and i want to refresh it just becoz of data i cant do anything becoz
i m affaird that i will lost all my data pl tell me how can i safe it
i m very much worried.
thank you
with regards

Hi user483468,
From: http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96652/ch01.htm#1006221
- Example Export Session in User Mode
Command-Line Method:
exp scott/tiger FILE=scott.dmp OWNER=scott GRANTS=y ROWS=y COMPRESS=y From: http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96652/ch02.htm#1005864
- Example Import of Tables Exported by Another User
Command-Line Method:
imp SYSTEM/password FROMUSER=scott TOUSER=blake FILE=blake.dmp Maybe can help you.
Best Regards,
Marcello

Similar Messages

  • Another question about import/export to excel file?

    Hi, I need to know urgently if it's possible to import/export excel files from/to JSP with unpredicted number of fields each row. For example, row 1 in the excel file can have 5 columns of data, row 2 has 3 columns of data, etc...
    Does reading from excel file in JSP require that we know beforehand how many columns there are and what each column represent?

    go read http://jakarta.apache.org/poi !!!!!!
    No it doesnt. the POI api provide method to determine the number of cells in a row.

  • HT4314 someone is using my account on clash of clans, can you remove all the device that are cnnected to my apple id? so i will be the one who can use it because iam the only one who knows my password. please help me guys i need my clash of clans

    Hi im allen. My problem is someone is using my account on Clash of Clans. Can you remove all device that at connected to my apple id? Will I be the only one who can access my game center and apple id thanks a lot apple team!
    <Email Edited By Host>

    Apple is not here.
    There are only users here like yourself.
    We can do nothing at all about any devices on you AppleID.

  • Quick question(For people who know about video formats and stuff)

    What type of media file is AVI? Because I looked on the list of codecs compatible with iPod and it didn't say if it was compatible or not, maybe it's something else. If you know, please tell me

    For the formats that were not compatible, I converted them, and it then played the video, but with no sound. I want to get South of Nowhere for a friend on my ipod, butt he only format they come in is AVI and MPG. MPG is quicktime, I know that so it won't work. But what is AVI. Of course I could buy it from the iTunes music store, but I am a kid with no credit card, and my parents wouldn't dare trust me with that

  • For anyone who knows about JVM and MRJ

    I have built an application that runs as expected on Mac OS X. Take the same program and run it on OS 9 (after using MRJAppBuilder) and the errors start. I have included the error below, I never use Vector.toString() so I am wondering if this may be in my JDBC drivers code, or a problem with Apple's MRJ? The code in Question I traced from the EventHandlers actionPerformed method which calls a fetch() method in our Connector class which uses JDBC driver to access the database. I caught a java.lang.NullPointerException with a simple system.out to tell me it was caught and the same error is still thrown on OS 9 so I am wondering if it could be JDBC or MRJ?
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at java.util.Vector.toString(Vector.java)
    at javax.swing.DefaultListCellRenderer.getListCellRendererComponent(DefaultListCellRenderer.java:82)
    at javax.swing.plaf.basic.BasicListUI.updateLayoutState(BasicListUI.java:782)
    at javax.swing.plaf.basic.BasicListUI.maybeUpdateLayoutState(BasicListUI.java:732)
    at javax.swing.plaf.basic.BasicListUI.getPreferredSize(BasicListUI.java:173)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:772)
    at javax.swing.JList.getPreferredScrollableViewportSize(JList.java:1400)
    at javax.swing.ViewportLayout.preferredLayoutSize(ViewportLayout.java:75)
    at java.awt.Container.preferredSize(Container.java)
    at java.awt.Container.getPreferredSize(Container.java)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:774)
    at javax.swing.ScrollPaneLayout.preferredLayoutSize(ScrollPaneLayout.java:459)
    at java.awt.Container.preferredSize(Container.java)
    at java.awt.Container.getPreferredSize(Container.java)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:774)
    at java.awt.FlowLayout.layoutContainer(FlowLayout.java)
    at java.awt.Container.layout(Container.java)
    at java.awt.Container.doLayout(Container.java)
    at java.awt.Container.validateTree(Container.java)
    at java.awt.Container.validate(Container.java)
    at EventHandler.mouseClicked(EventHandler.java:354)
    at java.awt.Component.processMouseEvent(Component.java)
    at java.awt.Component.processEvent(Component.java)
    at java.awt.Component.dispatchEventImpl(Compiled Code)
    at java.awt.Component.dispatchEvent(Compiled Code)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java)

    I'm also including the Connector's fetch() method just in case, it's the only code with Vectors for return values.
    public Vector fetch( String sqlString ) {
    rows.removeAllElements();
    try {
    Statement stmt = connection.createStatement();
    ResultSet rs = stmt.executeQuery( sqlString );
    ResultSetMetaData rsmd = rs.getMetaData();
    //Set the number of columns, their names and types
    for( int col = 1; col <= rsmd.getColumnCount(); col++ ) {
    columnNames.addElement( rsmd.getColumnLabel( col ) );
    columnTypes.addElement( rsmd.getColumnTypeName( col ) );
    //Set the rows
    while (rs.next()) {
    Vector newRow = new Vector();
    for ( int col = 1; col <= rsmd.getColumnCount(); col++ ) {
    newRow.addElement(rs.getObject(col));
    rows.addElement(newRow);
    rs.close();
    stmt.close();
    catch ( SQLException exception ) {
    while ( exception != null ) {
    System.out.println( "\nSQL Exception: " + exception.getMessage() );
    System.out.println( "\nANSI-92 SQL State: " + exception.getSQLState() );
    System.out.println( "\nVendor Error Code: " + exception.getErrorCode() );
    } //While
    } //catch
    catch( java.lang.NullPointerException npe ) {
    System.out.println( "Vector toString error." );
    return rows;
    } //fetch

  • For Malcolm Rayfield, or anyone who knows about VGA/DVI/ADC ports

    I gave up on my Apple Monitor and bought a new 19" LCD flatscreen, but I'm getting a lot of ghosting from my windows and text which stretches the length of the screen in both directions.
    The monitor came with both a DVI port and a VGA port, whereas my Mac G4 has a VGI and an ADC port. So right now I'm connected through the VGA port, and I'm guessing that's what's causing the ghosting.
    I'm wondering, then, if I'd be better off with an adapter that connects a DVI cable to my VGA port, or one that connects the DVI cable to my ADC port. If either will work, then I'll probably opt for whichever is cheaper.
    By the way, I'm now getting my sound through the new monitor, and I'd like to go back to the speaker on my G4, which sounds far better. Hopefully someone can address that issue as well.

    The ghosting is a grey line which matches the height of a given font, or any other image that appears on the desktop. These lines run the full width of the screen, and if I move the window, they move with it.
    I made a screen capture, in the off chance that it can provide an illustration. It's impossible for me to tell from this computer, but I figured it was worth a shot.
    http://members.aol.com/mistermug/Ghosting.jpg

  • For someone who knows about Micros

    A friend's lent me his broken Micro to try and fix - apart from what I've already done, obviously - any ideas apart from returning it's
    When turned on not connected to the charger, it starts up to the 'Zen Micro' text and then freezes. Same happens when battery is removed and replaced.
    When charger is connected and it's turned on, it goes to 'Rebuilding Library' and the HD whirs for ten minutes or so, then it seems to freeze. There's no progress bar displayed on the 'Rebuilding' screen.
    Cheers

    All you can do is try the options in Rescue Mode. I suspect Reload Firmware is your last option to try, and obviously don't format it if he has valuable data on there.

  • Basic question about importing/exporting movies

    Hi all! I'm a complete novice with Flash (and moviemaking). I used it many years ago, but haven't used it in a long, long time. Flash may not even be the program I need... so let me know if that's the case.
    Basically, I shot a video with my camera. It is a .mov file. I imported it into iMovie and edited it. Then I exported it as a .mov file. I want to embed the video into a web page. As far as I can tell, in Dreamweaver it needs to be a .swf file. But I don't think I can export an swf file from iMovie. So I read online I could convert my file using Flash.
    I followed directions I found online, but though it seems to be working... it's not. Here's what I did:
    I opened a new file in Flash. I used the default type. I clicked on the timeline and went to File > Import > Import movie (using all the default choices).
    I broused to find the .mov file. I clicked Next.
    I chose a skin that was the default (Minimal Flat Custom Color Play Back See CounterV...). Clicked Next. Clicked Finish.
    A little movie player is now on my Flash screen.
    I started adding frames (F5). I see frames are added in the timeline.
    But... when I go to play the movie... it DOES play... but the screen is black.
    I see I CAN export it as a swf file... but since I can't see the movie when I play it, I'm guessing it's not working (the tutorial I was using said I should be able to see it at this point).
    So... am I going about this the completely wrong way? Why is it not working? Thanks for helping me out.
    julie
    PS I'm using Flash Professional CC v. 13.0.0.759 on an iMac

    open your mov file in adobe media encoder.  save to flv or f4v.
    open flash pro, add an flvplayback component to the stage and assign its source (using a relative, not absolute path) to be your flv or f4v.  test.
    when you have that working you can publish a swf and html.  use the html code to embed the swf in your web page.
    p.s. you'll need to upload the flv/f4v, the swf the html file that contains the embedding code AND, if you use an flvplayback skin, that skin.

  • Where's can i Buy any Professional Authoring DVD for IMAC, did you know about Studio DVD pro ?

    I need help, i need buy or dowload some Professional Authoring DVD for IMAC, I editing in my Final Cut Pro X and need a DVD authoring
    after installing the Mavericks, my IDVD don't work, can someone help about this ?
    also, did you know if DVD studio pro its available for sale ? if yes, where's can I buy  ?
    thanks

    Apple discontinued DVD Studio Pro three/four years ago. You can probably find copies from private sellers, but whether it will work without problems on OS X 10.9 I don't know. I don't know of any "professional" alternative to DVDSP for Mac, but someone else here may be able to offer suggestions.
    As to iDVD, it should work under Mavericks, depending on what version of iDVD you're running. You might ask for assitance in the iDVD forum. For alternatives to iDVD, see this page for suggestions:
    http://alternativeto.net/software/idvd/?platform=mac
    Regards.

  • Stupid question about import/export

    Hi All,
    i'm banging my head against the wall :) :)
    i have one database (oracle 10g) , the database is called ORAPD
    in this database lives a user called WFAT
    ORAPD -- WFAT
    now i create 3 another users: WFATG , WFAUTOG, WFPATG
    Now i want to import all data, objects, index,sequences etc from WFAT to each one of the other 3 users
    ORAPD -- WFAT
    -- WFATG (new user with objects from wfat)
    -- WFAUTOG (new user with objects from wfat)
    -- WFPATG (new user with objects from wfat)
    this is want i've done.
    export wfat objects, connected with user system with expdp
    import wfaobjects to each one of the new 3 users with impdp , remapping schemas and tablespaces
    f:\impdp system/passwordXXX schemas=wfat remap_schema=wfat:wfautog remap_ta
    blespace=tbs_wfatg_tab:tbs_wfautog_tab remap_tablespace=tbs_wfatg_idx:tbs_wfauto
    g_idx remap_tablespace=tbs_wfatg_xml:tbs_wfautog_xml status=60 dumpfile=exp_wfat
    g_20100421.dmp parallel=2 directory=dumpdirdd
    The problem:
    i have WFAT tables with triggers that belong to WFATG , WFPATG and WFAUTOG users !!!
    why ???
    Best regards
    Rui Madaleno

    Hi Paul,
    thanks for you reply
    I have followed your suggestion and removed the shemas=wfat option from the impdp command.
    Here are the steps:
    1) create the user wfautog
    Note that , before the import i've created the tablespaces and the wfautog user:
    CREATE USER WFAUTOG
    IDENTIFIED BY xxxxxx
    DEFAULT TABLESPACE TBS_WFAUTOG_TAB
    TEMPORARY TABLESPACE TEMP
    PROFILE DEFAULT
    ACCOUNT UNLOCK;
    -- 2 Roles for WFAUTOG
    GRANT CONNECT TO WFAUTOG;
    GRANT RESOURCE TO WFAUTOG;
    ALTER USER WFAUTOG DEFAULT ROLE ALL;
    -- 1 System Privilege for WFAUTOG
    GRANT UNLIMITED TABLESPACE TO WFAUTOG;
    2) import data:
    f:\impdp system/passwordXXX remap_schema=wfat:wfautog remap_ta
    blespace=tbs_wfatg_tab:tbs_wfautog_tab remap_tablespace=tbs_wfatg_idx:tbs_wfauto
    g_idx remap_tablespace=tbs_wfatg_xml:tbs_wfautog_xml status=60 dumpfile=exp_wfat
    g_20100421.dmp parallel=2 directory=dumpdirdd
    After that i detect the following problems :( :(
    1) There are no sequences in the wfautog schema
    2) There are triggers owned by wfautog "pointing" to wfat tables
    Can you help me ?
    This is the log file from impdp:
    ===================
    Import: Release 10.1.0.2.0 - Production on Thursday, 22 April, 2010 8:27
    Copyright (c) 2003, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_FULL_01": system/******** remap_schema=wfatg:wfautog remap_tablespace=tbs_wfatg_tab:tbs_wfautog_tab remap_tablespace=tbs_wfatg_idx:tbs_wfautog_idx remap_tablespace=tbs_wfatg_xml:tbs_wfautog_xml status=60 dumpfile=exp_wfatg_20100421.dmp parallel=2 directory=dumpdir
    Processing object type SCHEMA_EXPORT/USER
    ORA-31684: Object type USER:"WFAUTOG" already exists
    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
    Processing object type SCHEMA_EXPORT/ROLE_GRANT
    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
    Processing object type SCHEMA_EXPORT/PASSWORD_HISTORY
    Processing object type SCHEMA_EXPORT/SE_PRE_SCHEMA_PROCOBJACT/PROCACT_SCHEMA
    Processing object type SCHEMA_EXPORT/DB_LINK
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
    . . imported "WFAUTOG"."LOGSTRANSFERENCIAS" 46.60 MB 866193 rows
    . . imported "WFAUTOG"."PASTAS" 35.89 MB 1273050 rows
    . . imported "WFAUTOG"."PROCESSOS" 100.9 MB 422797 rows
    . . imported "WFAUTOG"."DOCUMENTOSPROCESSOS" 24.59 MB 345854 rows
    . . imported "WFAUTOG"."TRANSFERENCIA_AS400" 18.09 MB 569333 rows
    . . imported "WFAUTOG"."CODIGOS_POSTAIS" 8.258 MB 195516 rows
    . . imported "WFAUTOG"."ANOTACOESPROCESSOS" 6.840 MB 71609 rows
    . . imported "WFAUTOG"."ALERTASPROCESSOS" 4.533 MB 58447 rows
    . . imported "WFAUTOG"."PROCESSO_CLINICO" 1.740 MB 27211 rows
    . . imported "WFAUTOG"."COMUNICACAO_PRESTADOR" 1.171 MB 11955 rows
    . . imported "WFAUTOG"."TEXTOSAUTPROCESSOS" 1018. KB 6784 rows
    . . imported "WFAUTOG"."PS_TXN" 310.5 KB 100 rows
    . . imported "WFAUTOG"."TAREFA" 716.2 KB 15227 rows
    . . imported "WFAUTOG"."MOTIVOS_COMUNICACAO" 205.7 KB 18455 rows
    . . imported "WFAUTOG"."AUTORIZACOESPROCESSOS" 152.8 KB 1904 rows
    . . imported "WFAUTOG"."AGENDA_UTILIZADOR" 96.92 KB 2647 rows
    . . imported "WFAUTOG"."TRIBUNAL_TRABALHO" 104.2 KB 987 rows
    . . imported "WFAUTOG"."AGENDA_DOCS" 65.59 KB 4422 rows
    . . imported "WFAUTOG"."DOC_COM_PRESTADOR" 88.28 KB 6479 rows
    . . imported "WFAUTOG"."PRESTADOR" 53.29 KB 354 rows
    . . imported "WFAUTOG"."TRIBUNAL" 47.07 KB 304 rows
    . . imported "WFAUTOG"."ACORDAO" 5.281 KB 3 rows
    . . imported "WFAUTOG"."ADVOGADO" 6.453 KB 38 rows
    . . imported "WFAUTOG"."AGENDA_ALERTAS" 10.50 KB 387 rows
    . . imported "WFAUTOG"."AGENDA_AUTORIZACOES" 5.632 KB 31 rows
    . . imported "WFAUTOG"."EVT_AGENDA" 28.15 MB 600474 rows
    . . imported "WFAUTOG"."XML_PROC_AS400" 0 KB 0 rows
    . . imported "WFAUTOG"."AGENDA_TAREFAS" 6.273 KB 77 rows
    . . imported "WFAUTOG"."AREASGESTAO" 6.945 KB 19 rows
    . . imported "WFAUTOG"."AREASGESTAOUTILIZADOR" 15.14 KB 919 rows
    . . imported "WFAUTOG"."CONCELHOS" 12.00 KB 308 rows
    . . imported "WFAUTOG"."CONFIGURACOES" 11.54 KB 117 rows
    . . imported "WFAUTOG"."CONTACTOS_ESCRITORIO" 7.484 KB 57 rows
    . . imported "WFAUTOG"."CORRESPONDENCIA_MODELOS" 6.789 KB 15 rows
    . . imported "WFAUTOG"."DISTRITOS" 5.757 KB 29 rows
    . . imported "WFAUTOG"."ESCRITORIOS" 11.67 KB 61 rows
    . . imported "WFAUTOG"."ESCRITORIOS_UTILIZADOR" 7.609 KB 139 rows
    . . imported "WFAUTOG"."ESTADOS_ALERTA" 5.281 KB 3 rows
    . . imported "WFAUTOG"."ESTADOS_AUTORIZACAO" 5.328 KB 5 rows
    . . imported "WFAUTOG"."ESTADO_CLINICO" 5.328 KB 8 rows
    . . imported "WFAUTOG"."ESTADO_COMUNICACAO" 5.390 KB 8 rows
    . . imported "WFAUTOG"."ESTADO_EXAME" 5.289 KB 3 rows
    . . imported "WFAUTOG"."ESTADO_JUNTA_MEDICA" 5.289 KB 3 rows
    . . imported "WFAUTOG"."ESTADO_PROCESSO" 5.312 KB 5 rows
    . . imported "WFAUTOG"."ESTADO_PROC_CLINICO" 5.281 KB 3 rows
    . . imported "WFAUTOG"."ESTADO_REEMBOLSO" 5.734 KB 6 rows
    . . imported "WFAUTOG"."ESTADO_TAREFA" 5.312 KB 5 rows
    . . imported "WFAUTOG"."ESTADO_TC" 5.281 KB 3 rows
    . . imported "WFAUTOG"."ESTADO_TENT_CONC" 5.335 KB 4 rows
    . . imported "WFAUTOG"."ESTADO_TT" 5.296 KB 4 rows
    . . imported "WFAUTOG"."EVT_EVENTO" 5.906 KB 8 rows
    . . imported "WFAUTOG"."EVT_GRUPO" 5.257 KB 1 rows
    . . imported "WFAUTOG"."FAX_QUEUE" 8.976 KB 43 rows
    . . imported "WFAUTOG"."FORMATOSDOCUMENTO" 5.398 KB 10 rows
    . . imported "WFAUTOG"."FORMA_CAUCAO" 5.304 KB 3 rows
    . . imported "WFAUTOG"."FUNCIONALIDADES" 6.140 KB 9 rows
    . . imported "WFAUTOG"."FUNCIONALIDADES_PERFIS" 5.484 KB 24 rows
    . . imported "WFAUTOG"."GENERIC_ERRORS" 9.328 KB 33 rows
    . . imported "WFAUTOG"."GRUPOS_LOG" 5.476 KB 12 rows
    . . imported "WFAUTOG"."HOSPITAL_CLINICA" 20.82 KB 124 rows
    . . imported "WFAUTOG"."HOSP_CLIN_REDE_MED" 6.476 KB 124 rows
    . . imported "WFAUTOG"."INDISPUTILIZADOR" 9.234 KB 58 rows
    . . imported "WFAUTOG"."INSTANCIA" 5.281 KB 3 rows
    . . imported "WFAUTOG"."IP_DEFINIDA" 5.265 KB 4 rows
    . . imported "WFAUTOG"."IP_PRESUMIVEL" 5.273 KB 4 rows
    . . imported "WFAUTOG"."MEDICO" 16.21 KB 236 rows
    . . imported "WFAUTOG"."MED_HOSP_CLIN" 5.265 KB 4 rows
    . . imported "WFAUTOG"."MOTIVOS_POR_TENT_CONC" 5.257 KB 2 rows
    . . imported "WFAUTOG"."MOTIVOS_TIPO_PRESTADOR" 6.929 KB 26 rows
    . . imported "WFAUTOG"."MOTIVO_TENT_CONC" 5.414 KB 6 rows
    . . imported "WFAUTOG"."NOME_TAREFA" 7.125 KB 27 rows
    . . imported "WFAUTOG"."ORIGEM_EXAME" 5.265 KB 2 rows
    . . imported "WFAUTOG"."PERFIS" 5.375 KB 8 rows
    . . imported "WFAUTOG"."PERFISUTILIZADOR" 11.10 KB 272 rows
    . . imported "WFAUTOG"."PERITO_MEDICO" 19.53 KB 307 rows
    . . imported "WFAUTOG"."PLAN_TABLE" 18.26 KB 10 rows
    . . imported "WFAUTOG"."PROCESSOSABERTOS" 5.617 KB 20 rows
    . . imported "WFAUTOG"."RAMOS" 6.085 KB 11 rows
    . . imported "WFAUTOG"."REDE_MEDICA" 5.375 KB 6 rows
    . . imported "WFAUTOG"."REGIME_ASSISTENCIA" 5.273 KB 2 rows
    . . imported "WFAUTOG"."REPRESENTANTE" 9.929 KB 97 rows
    . . imported "WFAUTOG"."REPRESENTANTE_TEMP" 10.07 KB 8 rows
    . . imported "WFAUTOG"."RESULTADO_SENTENCA" 5.281 KB 2 rows
    . . imported "WFAUTOG"."TENTATIVA_CONCILIACAO" 8.218 KB 3 rows
    . . imported "WFAUTOG"."TIPOSDOCUMENTO" 7.859 KB 71 rows
    . . imported "WFAUTOG"."TIPOS_PASTA" 6.304 KB 6 rows
    . . imported "WFAUTOG"."TIPO_CAUCAO" 5.296 KB 3 rows
    . . imported "WFAUTOG"."TIPO_EXAME" 5.312 KB 3 rows
    . . imported "WFAUTOG"."TIPO_HOSPITALCLINICA" 5.312 KB 3 rows
    . . imported "WFAUTOG"."TIPO_IP" 5.343 KB 7 rows
    . . imported "WFAUTOG"."TIPO_PRESTADOR" 5.343 KB 5 rows
    . . imported "WFAUTOG"."TIPO_TRIBUNAL" 5.289 KB 2 rows
    . . imported "WFAUTOG"."TRANSPORTE_ESPECIAL" 5.312 KB 5 rows
    . . imported "WFAUTOG"."TRIBUNAL_CIVEL" 25.10 KB 18 rows
    . . imported "WFAUTOG"."UTILIZADORES" 22.97 KB 196 rows
    . . imported "WFAUTOG"."ACTUALIZACAO_LOG" 0 KB 0 rows
    . . imported "WFAUTOG"."ACTUALIZACOESAS400" 0 KB 0 rows
    . . imported "WFAUTOG"."AGENCIASFAX" 0 KB 0 rows
    . . imported "WFAUTOG"."AREASPERFIL" 0 KB 0 rows
    . . imported "WFAUTOG"."EXAMES" 0 KB 0 rows
    . . imported "WFAUTOG"."FERIADOS" 0 KB 0 rows
    . . imported "WFAUTOG"."JUNTA_MEDICA" 0 KB 0 rows
    . . imported "WFAUTOG"."LOGSLOGINS" 0 KB 0 rows
    . . imported "WFAUTOG"."LOGSPROCESSOS" 0 KB 0 rows
    . . imported "WFAUTOG"."PERFISAREA" 0 KB 0 rows
    . . imported "WFAUTOG"."PERMISSOES" 0 KB 0 rows
    . . imported "WFAUTOG"."PKGLOG_TAB" 0 KB 0 rows
    . . imported "WFAUTOG"."SENTENCA" 0 KB 0 rows
    . . imported "WFAUTOG"."TRANSF_DEFINITIVAS_ERRORS" 0 KB 0 rows
    Processing object type SCHEMA_EXPORT/TABLE/GRANT/OBJECT_GRANT
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
    Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    Processing object type SCHEMA_EXPORT/TABLE/COMMENT
    Processing object type SCHEMA_EXPORT/PACKAGE/PACKAGE_SPEC
    Processing object type SCHEMA_EXPORT/PACKAGE/GRANT/OBJECT_GRANT
    Processing object type SCHEMA_EXPORT/FUNCTION/FUNCTION
    Processing object type SCHEMA_EXPORT/FUNCTION/GRANT/OBJECT_GRANT
    Processing object type SCHEMA_EXPORT/PROCEDURE/PROCEDURE
    Processing object type SCHEMA_EXPORT/PROCEDURE/GRANT/OBJECT_GRANT
    Processing object type SCHEMA_EXPORT/PACKAGE/COMPILE_PACKAGE/PACKAGE_SPEC/ALTER_PACKAGE_SPEC
    Processing object type SCHEMA_EXPORT/FUNCTION/ALTER_FUNCTION
    ORA-39082: Object type ALTER_FUNCTION:"WFAUTOG"."DEVOLVE_1_PARTICIP_PROC" created with compilation warnings
    ORA-39082: Object type ALTER_FUNCTION:"WFAUTOG"."DEVOLVE_NOME_PRESTADOR_PC" created with compilation warnings
    ORA-39082: Object type ALTER_FUNCTION:"WFAUTOG"."DEVOLVE_ULTIMO_RELATMED_PROC" created with compilation warnings
    ORA-39082: Object type ALTER_FUNCTION:"WFAUTOG"."SMS_FAX_HANDLER" created with compilation warnings
    Processing object type SCHEMA_EXPORT/PROCEDURE/ALTER_PROCEDURE
    ORA-39082: Object type ALTER_PROCEDURE:"WFAUTOG"."DAR_TOMAR_CONHECIMENTO_HANDLER" created with compilation warnings
    ORA-39082: Object type ALTER_PROCEDURE:"WFAUTOG"."FAX_COMPROVATIVO_HANDLER" created with compilation warnings
    ORA-39082: Object type ALTER_PROCEDURE:"WFAUTOG"."SEND_FAX_CORRESPONDENCIA" created with compilation warnings
    ORA-39082: Object type ALTER_PROCEDURE:"WFAUTOG"."TROCA_GESTOR" created with compilation warnings
    ORA-39082: Object type ALTER_PROCEDURE:"WFAUTOG"."WFAT_JOB_ENGINE_HANDLER" created with compilation warnings
    Processing object type SCHEMA_EXPORT/VIEW/VIEW
    Processing object type SCHEMA_EXPORT/PACKAGE/PACKAGE_BODY
    ORA-39082: Object type PACKAGE_BODY:"WFAUTOG"."SINISTRO_WEBSERVICE_HANDLER" created with compilation warnings
    ORA-39082: Object type PACKAGE_BODY:"WFAUTOG"."TRANSFERE_DEFINITIVO_PKG" created with compilation warnings
    ORA-39082: Object type PACKAGE_BODY:"WFAUTOG"."VERIFICA_INDISPONIBILIDADES" created with compilation warnings
    ORA-39082: Object type PACKAGE_BODY:"WFAUTOG"."ACTIVACAO_AGENDA_PKG" created with compilation warnings
    ORA-39082: Object type PACKAGE_BODY:"WFAUTOG"."CLASSIFICACAO_PKG" created with compilation warnings
    ORA-39082: Object type PACKAGE_BODY:"WFAUTOG"."PKG_UTILS" created with compilation warnings
    Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    Processing object type SCHEMA_EXPORT/TABLE/TRIGGER
    ORA-39082: Object type TRIGGER:"WFAUTOG"."AFT_INS_ALERTAS_TRG" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."AFT_INS_ALERTAS_TRG" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."AFT_UPDT_AUT_TRG" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."AFT_UPDT_AUT_TRG" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INSERT_AGENDA_UTIL_TRG" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INSERT_AGENDA_UTIL_TRG" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ACOR" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ACOR" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ADV" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ADV" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ALRT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ALRT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ANOT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ANOT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_AUT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_AUT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_CPR" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_CPR" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_DOCP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_DOCP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_EAL" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_EAL" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_EAUT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_EAUT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ECL" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ECL" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ECOM" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ECOM" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_EEX" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_EEX" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_EJM" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_EJM" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_EPROC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_EPROC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ESTC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ESTC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ETC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ETC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ETF" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ETF" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ETT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_ETT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_EXM" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_EXM" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_FCAU" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_FCAU" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_FUNC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_FUNC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_GRPL" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_GRPL" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_HOSP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_HOSP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_INDISP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_INDISP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_INS" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_INS" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_IPD" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_IPD" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_IPP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_IPP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_JMED" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_JMED" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_LGP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_LGP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_LOGT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_LOGT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_MED" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_MED" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_MTC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_MTC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_MTP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_MTP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_NTF" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_NTF" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_OEX" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_OEX" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PCL" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PCL" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PERF" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PERF" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PERFS_UTIL" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PERFS_UTIL" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PMED" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PMED" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PROC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PROC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PST" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PST" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PTR" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_PTR" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_RAS" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_RAS" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_REP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_REP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_RMED" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_RMED" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_RSEN" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_RSEN" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_SEN" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_SEN" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TAR" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TAR" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TCONC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TCONC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TESP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TESP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TPA" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TPA" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TPC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TPC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TPE" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TPE" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TPIP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TPIP" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TPR" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TPR" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TRANSF_AS400" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TRANSF_AS400" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TRIB" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TRIB" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TXT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_INS_TXT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_UPD_AGENDA_UTILIZADOR" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."BEF_UPD_AGENDA_UTILIZADOR" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."TRIG_BEF_INS_ESC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."TRIG_BEF_INS_ESC" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."TRIG_EVT_AFT_INS_AGENDA_UTI" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."TRIG_EVT_AFT_INS_AGENDA_UTI" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."TRIG_EVT_BEF_DEL_AGENDA_UTI" created with compilation warnings
    ORA-39082: Object type TRIGGER:"WFAUTOG"."TRIG_EVT_BEF_DEL_AGENDA_UTI" created with compilation warnings
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/SE_TBL_FBM_INDEX_INDEX/INDEX
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/SE_TBL_FBM_IND_STATS/INDEX_STATISTICS
    Job "SYSTEM"."SYS_IMPORT_FULL_01" completed with 150 error(s) at 08:35
    Regards
    Rui Madaleno

  • Who knows about this?

    I am looking for the steps to change the colors in a video clip that is about 14 seconds, but so far I have only been able to change the color in the first frame of the clip, I am also trying to figure out to apply the color change of the first frame of the  clip, to the rest of the frames in the clip, so the entire clip has the same color.

    You'll want to find a forum for whatever video editing software you are using. Acrobat is not an editing software.

  • Is there anybody who know about editing multiple tracks, particularly about taking out sections of all tracks?

    When a track has space between video clips, the split clip allows the "delete and close gap" to go past the CTI.  The delete leaves me to move the tracks manually, thereby loosing the alignment I worked so hard to create.

    Bill
    I have reviewed the entire thread several times. The the following is my current understanding based on your most current posts. Please let me know if I have interpreted what you wrote correctly.
    You are doing 3 tracks multi-camera editing using Premiere Elements 12, with each track scene the same but each from a different angle (all 3 in sync for the moment depicted). Based on which track content is on top, you are going along deciding what is to be seen by "removing" the appropriate clip(s). And, as you do that, unwanted clip movement is occurring which is messing up your in sync multi-camera editing alignment.
    I suspect all this started when you decided to use Delete and Close Gap and found that you could not on any video track other than Video Track1. It appears that you found "Cut" was an option. You do not want "Cut" in this instance, you want "Delete", and any clip movements should be made with clips as a group and/or individually with the Ctrl key or Alt key of the computer main keyboard held down as you do that.
    Right now I am not understanding how Snagit got into the workflow. But, the bottom line is, if you have a strategy that works for you, please go with it. I will stay with you in this task until you succeed. As a backup, you may want to keep a copy or copies of the project with the track alignment in tact.
    If I am correct in my understanding of the multi-camera editing aspects of your task, I would ask you to think about (at the right time) using Opacity of clips rather than cuts to decide what is to be shown and not shown. Select a clip, go to Applied Effects Tab/Applied Effects Palette/Opacity Panel expanded. For those clips you want to see 100% Opacity, for those you do not want to see Opacity 0% instead of a cut out.
    As for the matter of Set In and Set Out points, I suspect that the Adobe rep was referring to the following splitting of clips in the Preview Window of the project. But, I do not see that as the way to go for this particular task.
    ATR Premiere Elements Troubleshooting: PE11: Project Assets Organization for Scene and Highlight Grabs from Collection o…
    If you think a screenshot of your opened tracks would help me focus better into your project, please post one, especially if you think that we are not yet in sync.
    Thanks.
    ATR

  • Will there be an alternative to the current minimalist theme of iOS 7. It is far to small for a handheld instrument. Accessibility does not solve it for me don't know about others. Perhaps offer the old icons and fonts as an option? Easier to view

    Will there be an alternative to the minimalist theme? Or at least give us the old icons fonts etc the access ability options don't cut it for me
    I know you can do better you have before.

    lov2bugu, you said things the exact way I wanted to express them! It was like watching me talking to a SONY’s CEO.
    I don’t really think they are not aware of the problems. SONY used to be the 27th largest company in the world, according to Forbes. They are now at the 456th place!!
    They are aware of their problems and I think, the move to buy the remaining stocks from Ericsson, is a move to bounce back into the market. They found the right time, where the stock is too low and the economics around the globe don’t  look promising enough. I have to recognize them, all the bad phases they went into this year … hacking attack, loss of their factory in London, global economic climate etc.
    But these are not excuses good enough not to produce quality, reliable and technologically advanced goods. I think that SONY is not to blame for the bad course SE has had. I think this is what SONY wants to revert. They want to “embody” all their technology … BRAVIA engines (TV Tech), Walkman and Cybershot tech (using Carl Zeiss lenses), VAIO (Comp tech) and finally PS3. Ericsson tried to integrate them, unsuccessfully.
    Overall, I thing SONY, did not have or did not attempt to have the control of SE, hence, the answer you got back from SONY “… anything related to SE must be posted on the website of SE”. I think they will bounce. Just give ‘em some time. I’m willing to give them time, but not too much though. Just because I’ve always loved this brand!

  • Who knows about xdk: xslt vm and xml pipeline processor

    hello,
    i read anywhere that xslt vm and xml pipeline processor is
    part of the xdk.
    i would know more about xslt vm and pipeline processor,
    but where ??
    thank you!!

    Hi,
    XSLT VM is a high performance XSLT transformation engine in C.
    XML Pipeline Processor specifies Java processes to be executed in a declarative manner. W3C recommendation is at http://www.w3.org/TR/2002/NOTE-xml-pipeline-20020228/.
    Both of these are supported by Oracle in XDK 10i. More information at http://technet.oracle.com/tech/xml/xdk/content.html. Documentation at http://otn.oracle.com/docs/tech/xml/xdk/doc_library/Beta/index.html.
    Thanks.

  • For the man who knows everything

    Just tell what information you have received. Customers need useful informations, not just apologize and hide things we dont or wont know. Please kindly tell the truth why sony deleted the part of video and the update info you get before.Also what sony gonna do to us. A big Thanks to you.
    Solved!
    Go to Solution.

    Hi.
    Are you referring to the Jelly Bean Update for the tablet?
    Go through the information available here regarding the Jelly Bean Update: http://community.sony.com/t5/Sony-Tablet-Announcements/Jelly-Bean-Release-Schedule/m-p/102681#U10268...
    You can get back with the detailed information regarding your concern, if you've other than the Jelly Bean Update.
    Note: If my post answers your question, please mark it as an "Accepted Solution."

Maybe you are looking for