Problem with Date / Time Title - Showing Inacurate Information

I use iMovie to make videos for my job. The videos need to have an accurate running time and date displayed on them. I use the "Date/Time" Title option and the running time and date appear on the video. BUT- there is a problem. The time is wrong.
When I import a video clip (from my Panasonic HDC-TM80) into iMovie, I can see the "time and date created" as well as the "length" of the video clip. The time and date created shows the time and date of when the clip ENDS. When I overlay the "Date/Time" Title, it starts the time (at the beginning of the clip) from the created time (which is actually the end).
Example:
Clip Created (end of clip): 3/23/11 10:30:00am
Length of clip: 12 min. 35 sec.
The actual Date/Time Title should show 10:17:25am at the beginning and runs through 10:30:00am (the end).
But instead it shows 10:30:00am at the beginning and runs through 10:42:35am. This obviously results in a 12 min. 35 sec. inaccuracy.
Is this a problem with the software? Is there a way to contact someone to alert them of this problem? Or am I missing something simple?
Thanks in advance for anyone's help.
-as a quick fix, I adjusted the time and date on the video clips so that it would show the correct info, but I'm usually working with several clips at a time and it is laborious to change each one.

I don't have an answer but was wondering how you like the TM80? Except for the date/time issue, is it compatible with iMovie'11?
Thanks!

Similar Messages

  • Problem with Date & Time Auto Update

    Hi everyone,
    I have been experiencing a date & time issue with my MacBook Air. (I am running 10.5.5 with all the latest software updates except for iTunes 8). Here's what's going on:
    Under the Date & Time preferences, whenever I try to check the box for "Set date & time automatically", the date and time do not update. I thought Norton might be the culprit in this case, but I have thoroughly uninstalled it, and this problem still persists. (I am actually borrowing this laptop for work, so I don't know if someone else possibly did something weird to it before I started using it. As far as I can remember, I've always had this problem -- the automatic setting has never worked.)
    I am connected to the internet when I do this, and I already have my time zone selected. Am I missing something obvious here?
    I apologize if this issue has been brought up before, but I did a lot of searching and couldn't find anything. Any suggestions would be greatly appreciated!!
    Thank you.

    whenever I try to check the box for "Set date & time automatically"
    You check it and the time does not update, or you try to check it and it doesn't show a little tick mark?
    Try it with Console.app open and see does it report any errors. Try changing the time server.
    AK

  • I have got problem with "Date & Time"

    I have bought a new Macbook Air 13"
    I have chosen "set date & time auto..."
    However, it shows in up right corner wrong date. Also all mail, reminders and etc work with wrong date.
    Please, tell me what to do with this problem.
    Sincerelly,
    Mark

    Incorrect date or time displayed in various applications

  • Problem with Date/Time field in Adobe LiveCycle

    I am trying to create a form that has a check-in and check-out dates. I want the user to enter those dates and then have the form automatically compute how many nights the user intends on staying.
    I have two fields, CHECKIN and CHECKOUT, set up as text fields. My third field, NIGHTS, has the following script to do the calculation:
    var strStart = CHECKIN.rawValue
    var strEnd = CHECKOUT.rawValue
    if(strStart.length && strEnd.length)
    var dateStart = util.scand("mmm d, yyyy",strStart);
    var dateEnd = util.scand("mmm d, yyyy",strEnd);
    var diff = dateEnd.getTime() - dateStart.getTime();
    var oneDay = 24 * 60 * 60 * 1000;
    var days = Math.floor(diff/oneDay);
    this.rawValue = days;
    else
    this.rawValue = 0;
    NOW...this is fine if the user inputs a four-digit year. If not, it's trouble. SO, what I want to do is change the CHECKIN and CHECKOUT fields to the date/time field so they select the date off the pop-up calendar.
    When I make the changes, I can't get the script to work for the NIGHTS field.
    CAN ANYONE HELP THIS NEWBIE?

    Make sure the format of the date strings provided by the calendar is what you are expecting. Or use the "formattedValue" for the input strings.

  • Problem with date + time

    Hi,
    I have a long time problem.
    I want to insert to my table the result of JXDatepicker + JSpinner (time HH:ss).
    It is work until I am calulate todays link in millisecound.
    please run my exampele to see my problem and I'll be happy if u can help me (cell 0,0).
    if you click in every date exept todays link, u get good result format (yyyy-MM-dd HH:ss:00)
    import java.awt.BorderLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.util.Date;import javax.swing.JButton;import javax.swing.JFormattedTextField;import javax.swing.JFrame;import javax.swing.JPanel;import javax.swing.JScrollPane;import javax.swing.table.DefaultTableModel;import org.jdesktop.swingx.JXTable;public class MyTable extends JFrame implements ActionListener {     private JXTable table;     private QM6JXDatePicker date;     private QM6JSpinner spinner;     private JFormattedTextField TxtfPriority;     public MyTable() {          String[] columnNames = { "Date", "String", "Integer" };          Object[][] data = { { new Date(), "AAA", 11 }, { new Date(), "B", 22 },                    { new Date(), "CCCCCC", 3 }, { new Date(), "D", 4 } };          DefaultTableModel model = new DefaultTableModel(data, columnNames);          table = new JXTable(model);          table.setPreferredScrollableViewportSize(table.getPreferredSize());          JScrollPane scrollPane = new JScrollPane(table);          getContentPane().add(scrollPane);          JButton button = new JButton("Update");          button.addActionListener(this);          getContentPane().add(button, BorderLayout.SOUTH);          getContentPane().add(getPanel(), BorderLayout.NORTH);     }     public JPanel getPanel() {          JPanel panel = new JPanel();          date = new QM6JXDatePicker();          spinner = new QM6JSpinner();          panel.add(date);          panel.add(spinner);          return panel;     }     public void actionPerformed(ActionEvent arg0) {          java.sql.Timestamp newDate = new java.sql.Timestamp(date.getDate()                    .getTime());          long miliSecDate = newDate.getTime();          String s = spinner.getTime();          String[] timeStr = s.split(":");          long miliSecTimeH = Long.parseLong(timeStr[0].trim());          long miliSecTimeS = Long.parseLong(timeStr[1].trim());          long miliSecTime = ((miliSecTimeH * 60 * 60) + (miliSecTimeS * 60)) * 1000;          newDate.setTime(miliSecTime + miliSecDate);          table.setValueAt(newDate, 0, 0);     }     public static void main(String[] args) {          MyTable frame = new MyTable();          frame.setDefaultCloseOperation(EXIT_ON_CLOSE);          frame.pack();          frame.setVisible(true);     }}
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import java.util.Calendar;
    import java.util.Date;
    import javax.swing.JPanel;
    import org.jdesktop.swingx.JXDatePicker;
    import org.jdesktop.swingx.JXHyperlink;
    import org.jdesktop.swingx.calendar.JXMonthView;
    public class QM6JXDatePicker extends JXDatePicker {
         private String[] dateStr = null;
         private DateFormat df;
         private SimpleDateFormat df2;
         private JPanel newLinkPanel;
         private JXMonthView calend;
         public QM6JXDatePicker() {
              df = DateFormat.getDateInstance(DateFormat.LONG);
              df2 = new SimpleDateFormat("dd/MM/yyyy");
              dateStr = new String[] { "dd/MM/yyyy" };
              getJXMonthView();
              LinkPanel();
              setFormats(dateStr);
              setMonthView(calend);
              setLinkPanel(newLinkPanel);
         private void LinkPanel() {
              newLinkPanel = new JPanel(new BorderLayout());
              JXHyperlink todayLink = new JXHyperlink();
              todayLink.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        getEditor().setText(df2.format((new Date())));
                        setDate(new Date());
                        getMonthView().getParent().setVisible(false);
              todayLink.setText("Today: " + df.format(new Date()));
              newLinkPanel.add(todayLink, BorderLayout.CENTER);
         private void getJXMonthView() {
              calend = new JXMonthView();
              calend.setTraversable(true);
              calend.setDayForeground(7, Color.RED);
              calend.setDaysOfTheWeekForeground(Color.BLUE);
              calend.setSelectedBackground(Color.YELLOW);
              calend.setFirstDayOfWeek(Calendar.SUNDAY);
         public JXMonthView getCalend() {
              return calend;
         public void setCalend(JXMonthView calend) {
              this.calend = calend;
    import java.util.Calendar;
    import java.util.Date;
    import javax.swing.JSpinner;
    import javax.swing.SpinnerDateModel;
    public class QM6JSpinner extends JSpinner{
         private JSpinner.DateEditor dateEditor;
         public QM6JSpinner() {
              setModel(new SpinnerDateModel(new Date(),
                        null, null, Calendar.MINUTE));
              dateEditor = new DateEditor(this, "HH:mm");
              setEditor(dateEditor);
         public String getTime() {
              return dateEditor.getTextField().getText();
    }Tanks alot!
    Yael

    The main class here...
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.util.Date;
    import javax.swing.JButton;
    import javax.swing.JFormattedTextField;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.table.DefaultTableModel;
    import org.jdesktop.swingx.JXTable;
    public class MyTable extends JFrame implements ActionListener {
         private JXTable table;
         private QM6JXDatePicker date;
         private QM6JSpinner spinner;
         private JFormattedTextField TxtfPriority;
         public MyTable() {
              String[] columnNames = { "Date", "String", "Integer" };
              Object[][] data = { { new Date(), "AAA", 11 }, { new Date(), "B", 22 },
                        { new Date(), "CCCCCC", 3 }, { new Date(), "D", 4 } };
              DefaultTableModel model = new DefaultTableModel(data, columnNames);
              table = new JXTable(model);
              table.setPreferredScrollableViewportSize(table.getPreferredSize());
              JScrollPane scrollPane = new JScrollPane(table);
              getContentPane().add(scrollPane);
              JButton button = new JButton("Update");
              button.addActionListener(this);
              getContentPane().add(button, BorderLayout.SOUTH);
              getContentPane().add(getPanel(), BorderLayout.NORTH);
         public JPanel getPanel() {
              JPanel panel = new JPanel();
              date = new QM6JXDatePicker();
              spinner = new QM6JSpinner();
              panel.add(date);
              panel.add(spinner);
              return panel;
         public void actionPerformed(ActionEvent arg0) {
              java.sql.Timestamp newDate = new java.sql.Timestamp(date.getDate()
                        .getTime());
              long miliSecDate = newDate.getTime();
              String s = spinner.getTime();
              String[] timeStr = s.split(":");
              long miliSecTimeH = Long.parseLong(timeStr[0].trim());
              long miliSecTimeS = Long.parseLong(timeStr[1].trim());
              long miliSecTime = ((miliSecTimeH * 60 * 60) + (miliSecTimeS * 60)) * 1000;
              newDate.setTime(miliSecTime + miliSecDate);
              table.setValueAt(newDate, 0, 0);
         public static void main(String[] args) {
              MyTable frame = new MyTable();
              frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
              frame.pack();
              frame.setVisible(true);
    }

  • Problem with date Time Format

    Hi All,
    I want to transform the input date format to ''YYYY-MM-DD-hh.mm.ss'.I am using the below format in format-datetime function in BPEL:
    '[Y0001]-[M01]-[D01]-[h01].[m01].[s01]'
    It is giving correct time and format between 1 and 12 o clock timings in hours('HH' place).But when we give more than 13 it is not giving proper timinngs though it is giving proper format.It is not following 24 hrs format
    Ex : When I give input value '2012-04-05T00:30:00’ and it is transforming '2012-04-05-12.30.00’ (I want it in the same time means '2012-04-05-00.30.00’
    Ex 2: When I give input value '2012-04-05T15:30:00’ and it is transforming '2012-04-05-03.30.00’(I want it in the same time means '2012-04-05-15.30.00’
    Why it is coming like that?Is there any mistake in the specified format('[Y0001]-[M01]-[D01]-[h01].[m01].[s01]')?

    Hi,
    Put H01 and not h01.
    Arik

  • Date/Time title

    How can I change the date and time when I put the date/time title alone. I put it right after the whole movie

    The Title-Safe area is also called the TV Safe area by Apple. In researching my issue, I found a support article on Apple's website regarding iMovie '08 having a similar problem with titles not fitting within the TV safe area when burned to DVD. Of course, this does not apply to the Date/Time Title in iMovie '09. Here's why: This article's advice to avoid such clipping is to use short titles that are centered in the video clip and to select the 'Show Fonts' button in the Preview window and change the left/right justified title to a centered title. Also, it says to avoid using subtitles to prevent clipping at the lower part of the TV screen. In iMovie '09, I don't see any sort of controls in the Date/Time Title to center the title, change the font, or make it not appear as a subtitle. Here's the link to the article:
    http://support.apple.com/kb/TS1004

  • I have one problem with Data Guard. My archive log files are not applied.

    I have one problem with Data Guard. My archive log files are not applied. However I have received all archive log files to my physical Standby db
    I have created a Physical Standby database on Oracle 10gR2 (Windows XP professional). Primary database is on another computer.
    In Enterprise Manager on Primary database it looks ok. I get the following message “Data Guard status Normal”
    But as I wrote above ”the archive log files are not applied”
    After I created the Physical Standby database, I have also done:
    1. I connected to the Physical Standby database instance.
    CONNECT SYS/SYS@luda AS SYSDBA
    2. I started the Oracle instance at the Physical Standby database without mounting the database.
    STARTUP NOMOUNT PFILE=C:\oracle\product\10.2.0\db_1\database\initluda.ora
    3. I mounted the Physical Standby database:
    ALTER DATABASE MOUNT STANDBY DATABASE
    4. I started redo apply on Physical Standby database
    alter database recover managed standby database disconnect from session
    5. I switched the log files on Physical Standby database
    alter system switch logfile
    6. I verified the redo data was received and archived on Physical Standby database
    select sequence#, first_time, next_time from v$archived_log order by sequence#
    SEQUENCE# FIRST_TIME NEXT_TIME
    3 2006-06-27 2006-06-27
    4 2006-06-27 2006-06-27
    5 2006-06-27 2006-06-27
    6 2006-06-27 2006-06-27
    7 2006-06-27 2006-06-27
    8 2006-06-27 2006-06-27
    7. I verified the archived redo log files were applied on Physical Standby database
    select sequence#,applied from v$archived_log;
    SEQUENCE# APP
    4 NO
    3 NO
    5 NO
    6 NO
    7 NO
    8 NO
    8. on Physical Standby database
    select * from v$archive_gap;
    No rows
    9. on Physical Standby database
    SELECT MESSAGE FROM V$DATAGUARD_STATUS;
    MESSAGE
    ARC0: Archival started
    ARC1: Archival started
    ARC2: Archival started
    ARC3: Archival started
    ARC4: Archival started
    ARC5: Archival started
    ARC6: Archival started
    ARC7: Archival started
    ARC8: Archival started
    ARC9: Archival started
    ARCa: Archival started
    ARCb: Archival started
    ARCc: Archival started
    ARCd: Archival started
    ARCe: Archival started
    ARCf: Archival started
    ARCg: Archival started
    ARCh: Archival started
    ARCi: Archival started
    ARCj: Archival started
    ARCk: Archival started
    ARCl: Archival started
    ARCm: Archival started
    ARCn: Archival started
    ARCo: Archival started
    ARCp: Archival started
    ARCq: Archival started
    ARCr: Archival started
    ARCs: Archival started
    ARCt: Archival started
    ARC0: Becoming the 'no FAL' ARCH
    ARC0: Becoming the 'no SRL' ARCH
    ARC1: Becoming the heartbeat ARCH
    Attempt to start background Managed Standby Recovery process
    MRP0: Background Managed Standby Recovery process started
    Managed Standby Recovery not using Real Time Apply
    MRP0: Background Media Recovery terminated with error 1110
    MRP0: Background Media Recovery process shutdown
    Redo Shipping Client Connected as PUBLIC
    -- Connected User is Valid
    RFS[1]: Assigned to RFS process 2148
    RFS[1]: Identified database type as 'physical standby'
    Redo Shipping Client Connected as PUBLIC
    -- Connected User is Valid
    RFS[2]: Assigned to RFS process 2384
    RFS[2]: Identified database type as 'physical standby'
    Redo Shipping Client Connected as PUBLIC
    -- Connected User is Valid
    RFS[3]: Assigned to RFS process 3188
    RFS[3]: Identified database type as 'physical standby'
    Primary database is in MAXIMUM PERFORMANCE mode
    Primary database is in MAXIMUM PERFORMANCE mode
    RFS[3]: No standby redo logfiles created
    Redo Shipping Client Connected as PUBLIC
    -- Connected User is Valid
    RFS[4]: Assigned to RFS process 3168
    RFS[4]: Identified database type as 'physical standby'
    RFS[4]: No standby redo logfiles created
    Primary database is in MAXIMUM PERFORMANCE mode
    RFS[3]: No standby redo logfiles created
    10. on Physical Standby database
    SELECT PROCESS, STATUS, THREAD#, SEQUENCE#, BLOCK#, BLOCKS FROM V$MANAGED_STANDBY;
    PROCESS STATUS THREAD# SEQUENCE# BLOCK# BLOCKS
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    ARCH CONNECTED 0 0 0 0
    RFS IDLE 0 0 0 0
    RFS IDLE 0 0 0 0
    RFS IDLE 1 9 13664 2
    RFS IDLE 0 0 0 0
    10) on Primary database:
    select message from v$dataguard_status;
    MESSAGE
    ARC0: Archival started
    ARC1: Archival started
    ARC2: Archival started
    ARC3: Archival started
    ARC4: Archival started
    ARC5: Archival started
    ARC6: Archival started
    ARC7: Archival started
    ARC8: Archival started
    ARC9: Archival started
    ARCa: Archival started
    ARCb: Archival started
    ARCc: Archival started
    ARCd: Archival started
    ARCe: Archival started
    ARCf: Archival started
    ARCg: Archival started
    ARCh: Archival started
    ARCi: Archival started
    ARCj: Archival started
    ARCk: Archival started
    ARCl: Archival started
    ARCm: Archival started
    ARCn: Archival started
    ARCo: Archival started
    ARCp: Archival started
    ARCq: Archival started
    ARCr: Archival started
    ARCs: Archival started
    ARCt: Archival started
    ARCm: Becoming the 'no FAL' ARCH
    ARCm: Becoming the 'no SRL' ARCH
    ARCd: Becoming the heartbeat ARCH
    Error 1034 received logging on to the standby
    Error 1034 received logging on to the standby
    LGWR: Error 1034 creating archivelog file 'luda'
    LNS: Failed to archive log 3 thread 1 sequence 7 (1034)
    FAL[server, ARCh]: Error 1034 creating remote archivelog file 'luda'
    11)on primary db
    select name,sequence#,applied from v$archived_log;
    NAME SEQUENCE# APP
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\IRINA\ARC00003_0594204176.001 3 NO
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\IRINA\ARC00004_0594204176.001 4 NO
    Luda 4 NO
    Luda 3 NO
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\IRINA\ARC00005_0594204176.001 5 NO
    Luda 5 NO
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\IRINA\ARC00006_0594204176.001 6 NO
    Luda 6 NO
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\IRINA\ARC00007_0594204176.001 7 NO
    Luda 7 NO
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\IRINA\ARC00008_0594204176.001 8 NO
    Luda 8 NO
    12) on standby db
    select name,sequence#,applied from v$archived_log;
    NAME SEQUENCE# APP
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\LUDA\ARC00004_0594204176.001 4 NO
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\LUDA\ARC00003_0594204176.001 3 NO
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\LUDA\ARC00005_0594204176.001 5 NO
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\LUDA\ARC00006_0594204176.001 6 NO
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\LUDA\ARC00007_0594204176.001 7 NO
    C:\ORACLE\PRODUCT\10.2.0\ORADATA\LUDA\ARC00008_0594204176.001 8 NO
    13) my init.ora files
    On standby db
    irina.__db_cache_size=79691776
    irina.__java_pool_size=4194304
    irina.__large_pool_size=4194304
    irina.__shared_pool_size=75497472
    irina.__streams_pool_size=0
    *.audit_file_dest='C:\oracle\product\10.2.0\admin\luda\adump'
    *.background_dump_dest='C:\oracle\product\10.2.0\admin\luda\bdump'
    *.compatible='10.2.0.1.0'
    *.control_files='C:\oracle\product\10.2.0\oradata\luda\luda.ctl'
    *.core_dump_dest='C:\oracle\product\10.2.0\admin\luda\cdump'
    *.db_block_size=8192
    *.db_domain=''
    *.db_file_multiblock_read_count=16
    *.db_file_name_convert='luda','irina'
    *.db_name='irina'
    *.db_unique_name='luda'
    *.db_recovery_file_dest='C:\oracle\product\10.2.0\flash_recovery_area'
    *.db_recovery_file_dest_size=2147483648
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=irinaXDB)'
    *.fal_client='luda'
    *.fal_server='irina'
    *.job_queue_processes=10
    *.log_archive_config='DG_CONFIG=(irina,luda)'
    *.log_archive_dest_1='LOCATION=C:/oracle/product/10.2.0/oradata/luda/ VALID_FOR=(ALL_LOGFILES, ALL_ROLES) DB_UNIQUE_NAME=luda'
    *.log_archive_dest_2='SERVICE=irina LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES, PRIMARY_ROLE) DB_UNIQUE_NAME=irina'
    *.log_archive_dest_state_1='ENABLE'
    *.log_archive_dest_state_2='ENABLE'
    *.log_archive_max_processes=30
    *.log_file_name_convert='C:/oracle/product/10.2.0/oradata/irina/','C:/oracle/product/10.2.0/oradata/luda/'
    *.open_cursors=300
    *.pga_aggregate_target=16777216
    *.processes=150
    *.remote_login_passwordfile='EXCLUSIVE'
    *.sga_target=167772160
    *.standby_file_management='AUTO'
    *.undo_management='AUTO'
    *.undo_tablespace='UNDOTBS1'
    *.user_dump_dest='C:\oracle\product\10.2.0\admin\luda\udump'
    On primary db
    irina.__db_cache_size=79691776
    irina.__java_pool_size=4194304
    irina.__large_pool_size=4194304
    irina.__shared_pool_size=75497472
    irina.__streams_pool_size=0
    *.audit_file_dest='C:\oracle\product\10.2.0/admin/irina/adump'
    *.background_dump_dest='C:\oracle\product\10.2.0/admin/irina/bdump'
    *.compatible='10.2.0.1.0'
    *.control_files='C:\oracle\product\10.2.0\oradata\irina\control01.ctl','C:\oracle\product\10.2.0\oradata\irina\control02.ctl','C:\oracle\product\10.2.0\oradata\irina\control03.ctl'
    *.core_dump_dest='C:\oracle\product\10.2.0/admin/irina/cdump'
    *.db_block_size=8192
    *.db_domain=''
    *.db_file_multiblock_read_count=16
    *.db_file_name_convert='luda','irina'
    *.db_name='irina'
    *.db_recovery_file_dest='C:\oracle\product\10.2.0/flash_recovery_area'
    *.db_recovery_file_dest_size=2147483648
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=irinaXDB)'
    *.fal_client='irina'
    *.fal_server='luda'
    *.job_queue_processes=10
    *.log_archive_config='DG_CONFIG=(irina,luda)'
    *.log_archive_dest_1='LOCATION=C:/oracle/product/10.2.0/oradata/irina/ VALID_FOR=(ALL_LOGFILES, ALL_ROLES) DB_UNIQUE_NAME=irina'
    *.log_archive_dest_2='SERVICE=luda LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES, PRIMARY_ROLE) DB_UNIQUE_NAME=luda'
    *.log_archive_dest_state_1='ENABLE'
    *.log_archive_dest_state_2='ENABLE'
    *.log_archive_max_processes=30
    *.log_file_name_convert='C:/oracle/product/10.2.0/oradata/luda/','C:/oracle/product/10.2.0/oradata/irina/'
    *.open_cursors=300
    *.pga_aggregate_target=16777216
    *.processes=150
    *.remote_login_passwordfile='EXCLUSIVE'
    *.sga_target=167772160
    *.standby_file_management='AUTO'
    *.undo_management='AUTO'
    *.undo_tablespace='UNDOTBS1'
    *.user_dump_dest='C:\oracle\product\10.2.0/admin/irina/udump'
    Please help me!!!!

    Hi,
    After several tries my redo logs are applied now. I think in my case it had to do with the tnsnames.ora. At this moment I have both database in both tnsnames.ora files using the SID and not the SERVICE_NAME.
    Now I want to use DGMGRL. Adding a configuration and a stand-by database is working fine, but when I try to enable the configuration DGMGRL gives no feedback and it looks like it is hanging. The log, although says that it succeeded.
    In another session 'show configuration' results in the following, confirming that the enable succeeded.
    DGMGRL> show configuration
    Configuration
    Name: avhtest
    Enabled: YES
    Protection Mode: MaxPerformance
    Fast-Start Failover: DISABLED
    Databases:
    avhtest - Primary database
    avhtestls53 - Physical standby database
    Current status for "avhtest":
    Warning: ORA-16610: command 'ENABLE CONFIGURATION' in progress
    It there anybody that experienced the same problem and/or knows the solution to this?
    With kind regards,
    Martin Schaap

  • Problem with accent in Title

    Hi there,
    I'am using Adobe Captivate 6 on a mac, in French.
    On each slide I have a Title (area defined in my main slide).
    In the Title area, I cannot type accent such ü ö, but é à are working. In other text areas, is it working.
    What could I do ? Is it a bug ?
    Many thanks for your Help

    Yes I tried with antother fonts such as Arial Times New Roman, it is the same.
    I experience this also with other placeholders not only title ones, BUT... I found a partial issue.
    When I am typing the wanting caracter such as "ü" in the search filed, and then Copy/Paste in my Title Placeholder it works.
    I realy think is it a bug.
    Regards
    tchiboo
    Le 30 sept. 2012 à 13:38, Lilybiri <[email protected]> a écrit :
    Re: Problem with accent in Title
    created by Lilybiri in Adobe Captivate - View the full discussion
    Cannot help you, just hope someone of the staff pops in. It seems a bit strange however that this issue is only with the Title placeholders... the Spanish users had similar issues all the time. Did you try to change the font?
    Lilybiri
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4738287#4738287
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4738287#4738287
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4738287#4738287. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Captivate by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • I have problem with safari web content show up that not responding

    Hi apple support and other member
    My name is Oliver ..I using MacBook Pro (15-inch, Mid 2012)  | Processor 2.6 GHz Intel Core i7 | 8 GB 1600 MHz DDR3 | and update to OS X yosemite version 10.10.2
    I have a problem with my safari it show up that web content is not responding..What should i do because it happen all most every time in open up safari ? Pls help and give a advice ?
    Thank you
    Oliver Chu

    Hello, Oliver Chu.  
    Thank you for visiting Apple Support Communities.  
    I understand that you are experiencing an issue with the performance of Safari.  I would start with clearing Safari History and Website Data.  If the issue persists, you may need to take a look at the troubleshooting steps in the second article.  
    Reset Safari
    Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues
    Cheers, 
    Jason H.  

  • Face time fades out and then tries to reconnect on new ipad retina display on WiFi.  Iphone 4s has no problem with face time from exact same location and same contact.  WiFi signal strong on both devices.  What gives?

    Face time fades out and then retries to connect (new Ipad Retina Display) on WiFi. Iphone 4s has no problem with face time from same location and same contact.  What gives?

    rdallas001 wrote:
    Is the router to small?
    Not necessarily, if you are using Facetime all the data goes through your WiFi router, your cable/DSL modem, your ISP and the internet to Apple's Facetime servers and then, in reverse, down to the Facetime recipient. If your ISP connection is too slow or there is excessive traffic on the internet you can have Facetime problems.
    Most WiFi routers can handle this unless others in the house are also using WiFi at the same time. The problem may be your ISP connection or congestion on the internet, etc.

  • Problem with date format from Oracle DB

    Hi,
    I am facing a problem with date fields from Oracle DB sources. The date format of the field in DB table is 'Date base type is DATE and DDIC type is DATS'.
    I mapped the date fields to Date characters in BI. Now the data that comes to PSA is in weird format. It shows like -0.PR.09-A
    I have changing the field settings in DataSource  to internal and external and also i have tried mapping these date fields to text fields with out luck. All delivers the same format.
    I have also tried using conversion routines like, CONVERSION_EXIT_IDATE_INPUT to change format. It also delivers me the same old result.
    If anybody of you have any suggestions or if anybody have you experienced such probelms, Please share your experience with me.
    Thanks in advance.
    Regards
    Varada

    Thanks for all your reply. I can only the solutions creating view in database. I want some solution to be done in BI. I appreciate if some of you have idea in it.
    The issue again in detail
    I am facing an issue with date fields from oracle data. The data that is sent from Oracle is in the format is -0.AR.04-M. I am able to convert this date in BI with conversion routine in BI into format 04-MAR-0.
    The problem is,  I am getting data of length 10 (Output format) in the format -0.AR.04-M where the month is not in numericals. Since it is in text it is taking one character spacing more.
    I have tried in different ways to convert and increased the length in BI, the result is same. I am wondering if we can change the date format in database.
    I am in puzzle with the this date format. I have checked other Oracle DB connections data for date fields in BI, they get data in the format 20.081.031 which will allow to convert this in BI. Only from the system i am trying creating a problem.
    Regards
    Varada

  • A problem with data acquisitioning in LV 7.1 (transition from Traditional NI-DAQ to NI-DAQmx)

    Hi to everyone,
    I have a problem with data acquisitioning in LV 7.1.
    I made a transition from Tradiotional NI-DAQ to NI-DAQmx in my LabVIEW application.
    The problem I have is that when I acquire data in Traditional (without writing somewhere -
    just reading) then there is no scan backlog data. But when I acquire data in application that
    acquisition is based on DAQmx than a scan backlog indicator shows numbers from 20 to 50 for
    about 6 min and then that number quite quickly increases until I get an error (unable to
    acquire data. The data was overwritten).
    Acquisition settings are the same in both cases. When I acquire with DAQmx I use a global
    channels. Is a reason for that phenomenon in global channels data procesing? But it seems
    strange why does it flows quite smoothly for about 6 min and then it stucks?
    Best regards,
    Ero

    If you have an old Daq unit it may not be compatible with DAQMX. Which DAQ unit do you have? I think NI have a list showing which DAQ driver you can use with your card
    Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
    (Sorry no Labview "brag list" so far)

  • How do you edit date/time title slide???

    I've used date/time title slides in my movie, but I can't edit the date/time. I want the time of the clip, instead it just shows the date/time I inserted the title into the movie. On other title slides, you just click on the info to edit but it doesn't seem to work???
    Thanks

    It will pick up the metadata from the clip.
    So the first thing to check is whether your clip has metadata. Click VIEW/PLAYHEAD INFO and skim your mouse over the clip. Do you see any data and time info?
    You can add date and time info in iMovie by right-clicking on the Event clip and editing the date and time. i am not sure if this will populate the title, but it might. In older versions of iMovie, it would not.
    A better solution (assuming you know the date and time) is to select that clip in the Event.
    Then right-click on the clip and select Reveal in Finder.
    In the Finder, right-click/COPY. Go to your desktop and right-click PASTE. On this copy of the clip, change the name of the clip to clip-yyyy-mm-dd hh;mm;ss;ext where hh is hours in 24 hour time, ext is the current extension, and the rest should be self explanatory.
    Once you have done this, import it into iMovie using FILE/IMPORT/MOVIES...
    It is OK to import it into the same Event.
    Now it should have the correct date and time metadata.

  • Old problem with precision time counting and /usepmtimer solution.

    Hello, all!
    There was a problem in Windows XP and 2003 Server with using QueryPerformanceCouner() function. Sometimes it can cause problem with precision time measurements on CPUs which support powersaving modes by changing clock frequency. The simplest solution for that was /usepmtimer key in boot.ini file which forces the system to use another timer.
    I just want to know does this problem appear in Windoes 7? And how to solve it since there is no boot.ini file in Windows 7?
    Thanks a lot!
    P.S. This is a page with detailed description of the problem:
    http://support.microsoft.com/default.aspx/kb/895980

    Hi ,
    There is official documentation released on userpmtimer for windows 7 operating system.
    Also the KB article only refere to the OS which have performance problem.
    After reading the below article , i feel that this problem is taken care in windows 7 / windows 2008 ( though there is no formal written documentation )
    http://blogs.technet.com/perfguru/archive/2008/02/18/explanation-for-the-usepmtimer-switch-in-the-boot-ini.aspx
    you can post in windows 7 dedicated forum, so that MVP / Microsoft Engineers and community members would suggest you with latest data if any.
    http://social.technet.microsoft.com/Forums/en-US/category/w7itpro

Maybe you are looking for

  • Getting error while importing schema with ORACLE TEXT

    IMP-00003: ORACLE error 20000 encountered ORA-20000: Oracle Text error: DRG-52204: error while registering index DRG-10507: duplicate index name: WORKORDER_Q, owner: SYS ORA-06512: at "CTXSYS.DRUE", line 160 ORA-06512: at "CTXSYS.DRIIMP", line 115 OR

  • How to send one email to entire group.

    Looking for reference on how to send one email to entire group.

  • Biztalk Map: Repeated node

    Hi, Please find below Input file <Vin_Decoder> <Process> <Risk> <Line> <Exposer> <Type>VIN</type> <Svalue>123456789123456789</Svalue> </Exposer> <Exposer> <Type>Year</type> <Svalue>2014</Svalue> </Exposer> <Exposer> <Type>MAKE</type> <Svalue>2546</Sv

  • I've got some questions about Satellite Pro L300

    1.) How could I Update my Bios? I find the zip- File but no further Information how it works? 2.) I want to update for more memory. 2GB are less for fast working. Where could I find Informations about the memory controller- e.g. Voltage, Timings... f

  • Custom Master Page with Top Navigation and Left Navigation

    Hi All, I have successfully converted an HTML Page to a SharePoint 2013 Master Page. I also created a Custom Page Layout. Using both them I have created my SharePoint Site with 30+ pages. Each page is consisted with the Top Header Navigation as it is