FCPX .0.7 taking much longer to export projects than .06

Hi
Like some others, I'm finding exporting projects both old and new taking much longer in .07 than .06. The work around seems to be using Compressor which I don't have. I also am not getting larger files in export just longer export times.
Any ideas on why this is happening and what can be done to fix?

1) Which codec are you exporting to ?
When exporting FCPx is "rendering" and thus accessing the CPUs core(s). Fcpx 10.0.7 had something fundamental change to it... Certain operations really sped up while others slowed down.
Perhaps this is what you are experiencing.
When you say slower.... Do you mean... Half as fast ?

Similar Messages

  • Vusing fcpx 10.0.9 and i'm trying to export it to dvd. Its been 4 days already and its only at 57%. Why is it taking this long to export it?

    using fcpx 10.0.9 and i'm trying to export it to dvd. Its been 4 days already and its only at 57%. Why is it taking this long to export it?

    using fcpx 10.0.9 and i'm trying to export it to dvd. Its been 4 days already and its only at 57%. Why is it taking this long to export it?

  • My MacBook Pro (purchased in 2011) is taking 10 minutes to boot-up.  It's also taking much longer to open files.  I have 650 GB out of 700 GB left on my machine so it's not that I've overloaded the memory.  Is anyone else having this problem?

    My MacBook Pro (purchased in 2011) is taking 10 minutes to boot-up.  It's also taking much longer to open files.  I have 650 GB out of 700 GB left on my machine so it's not that I've overloaded the memory.  Is anyone else having this problem?

    Look at this comprehensive trouble shooting document;
    https://discussions.apple.com/docs/DOC-3353
    I suggest that you start with SMC and PRAM resets.
    Then  a Safe Boot.
    Ciao.

  • Recently my adobe is taking much longer to load PDF files that used to open immediately

    recently my adobe is taking much longer to load PDF files that used to load almost instantly

    Look at this comprehensive trouble shooting document;
    https://discussions.apple.com/docs/DOC-3353
    I suggest that you start with SMC and PRAM resets.
    Then  a Safe Boot.
    Ciao.

  • I moved my music from the c drive to the d drive. All of my music is in itunes but my ipod won't sync with itunes. The syncing process is taking much longer than usual too. I left my ipod over night to sync and it didnt finish. Fails to sync every time.

    I moved my music from the c drive to the d drive. All of my music is in itunes but my ipod won't sync with itunes. The syncing process is taking much longer than usual too. I left my ipod over night to sync and it didnt finish. Fails to sync every time. I tried to restore my ipod and it didnt help.

    Ignore.  I figured it out:)

  • Why this Query is taking much longer time than expected?

    Hi,
    I need experts support on the below mentioned issue:
    Why this Query is taking much longer time than expected? Sometimes I am getting connection timeout error. Is there any better way to achieve result in shortest time.  Below, please find the DDL & DML:
    DDL
    BHDCollections
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[BHDCollections](
     [BHDCollectionid] [bigint] IDENTITY(1,1) NOT NULL,
     [GroupMemberid] [int] NOT NULL,
     [BHDDate] [datetime] NOT NULL,
     [BHDShift] [varchar](10) NULL,
     [SlipValue] [decimal](18, 3) NOT NULL,
     [ProcessedValue] [decimal](18, 3) NOT NULL,
     [BHDRemarks] [varchar](500) NULL,
     [Createdby] [varchar](50) NULL,
     [Createdon] [datetime] NULL,
     CONSTRAINT [PK_BHDCollections] PRIMARY KEY CLUSTERED
     [BHDCollectionid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    BHDCollectionsDet
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[BHDCollectionsDet](
     [CollectionDetailid] [bigint] IDENTITY(1,1) NOT NULL,
     [BHDCollectionid] [bigint] NOT NULL,
     [Currencyid] [int] NOT NULL,
     [Denomination] [decimal](18, 3) NOT NULL,
     [Quantity] [int] NOT NULL,
     CONSTRAINT [PK_BHDCollectionsDet] PRIMARY KEY CLUSTERED
     [CollectionDetailid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    Banks
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[Banks](
     [Bankid] [int] IDENTITY(1,1) NOT NULL,
     [Bankname] [varchar](50) NOT NULL,
     [Bankabbr] [varchar](50) NULL,
     [BankContact] [varchar](50) NULL,
     [BankTel] [varchar](25) NULL,
     [BankFax] [varchar](25) NULL,
     [BankEmail] [varchar](50) NULL,
     [BankActive] [bit] NULL,
     [Createdby] [varchar](50) NULL,
     [Createdon] [datetime] NULL,
     CONSTRAINT [PK_Banks] PRIMARY KEY CLUSTERED
     [Bankid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    Groupmembers
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[GroupMembers](
     [GroupMemberid] [int] IDENTITY(1,1) NOT NULL,
     [Groupid] [int] NOT NULL,
     [BAID] [int] NOT NULL,
     [Createdby] [varchar](50) NULL,
     [Createdon] [datetime] NULL,
     CONSTRAINT [PK_GroupMembers] PRIMARY KEY CLUSTERED
     [GroupMemberid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ALTER TABLE [dbo].[GroupMembers]  WITH CHECK ADD  CONSTRAINT [FK_GroupMembers_BankAccounts] FOREIGN KEY([BAID])
    REFERENCES [dbo].[BankAccounts] ([BAID])
    GO
    ALTER TABLE [dbo].[GroupMembers] CHECK CONSTRAINT [FK_GroupMembers_BankAccounts]
    GO
    ALTER TABLE [dbo].[GroupMembers]  WITH CHECK ADD  CONSTRAINT [FK_GroupMembers_Groups] FOREIGN KEY([Groupid])
    REFERENCES [dbo].[Groups] ([Groupid])
    GO
    ALTER TABLE [dbo].[GroupMembers] CHECK CONSTRAINT [FK_GroupMembers_Groups]
    BankAccounts
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[BankAccounts](
     [BAID] [int] IDENTITY(1,1) NOT NULL,
     [CustomerID] [int] NOT NULL,
     [Locationid] [varchar](25) NOT NULL,
     [Bankid] [int] NOT NULL,
     [BankAccountNo] [varchar](50) NOT NULL,
     CONSTRAINT [PK_BankAccounts] PRIMARY KEY CLUSTERED
     [BAID] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ALTER TABLE [dbo].[BankAccounts]  WITH CHECK ADD  CONSTRAINT [FK_BankAccounts_Banks] FOREIGN KEY([Bankid])
    REFERENCES [dbo].[Banks] ([Bankid])
    GO
    ALTER TABLE [dbo].[BankAccounts] CHECK CONSTRAINT [FK_BankAccounts_Banks]
    GO
    ALTER TABLE [dbo].[BankAccounts]  WITH CHECK ADD  CONSTRAINT [FK_BankAccounts_Locations1] FOREIGN KEY([Locationid])
    REFERENCES [dbo].[Locations] ([Locationid])
    GO
    ALTER TABLE [dbo].[BankAccounts] CHECK CONSTRAINT [FK_BankAccounts_Locations1]
    Currency
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[Currency](
     [Currencyid] [int] IDENTITY(1,1) NOT NULL,
     [CurrencyISOCode] [varchar](20) NOT NULL,
     [CurrencyCountry] [varchar](50) NULL,
     [Currency] [varchar](50) NULL,
     CONSTRAINT [PK_Currency] PRIMARY KEY CLUSTERED
     [Currencyid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    CurrencyDetails
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[CurrencyDetails](
     [CurDenid] [int] IDENTITY(1,1) NOT NULL,
     [Currencyid] [int] NOT NULL,
     [Denomination] [decimal](15, 3) NOT NULL,
     [DenominationType] [varchar](25) NOT NULL,
     CONSTRAINT [PK_CurrencyDetails] PRIMARY KEY CLUSTERED
     [CurDenid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    QUERY
    WITH TEMP_TABLE AS
    SELECT     0 AS COINS, BHDCollectionsDet.Quantity AS BN, BHDCollections.BHDDate AS CollectionDate, BHDCollectionsDet.Currencyid,
                          (BHDCollections.BHDCollectionid) AS DSLIPS, Banks.Bankname
    FROM         BHDCollections INNER JOIN
                          BHDCollectionsDet ON BHDCollections.BHDCollectionid = BHDCollectionsDet.BHDCollectionid INNER JOIN
                          GroupMembers ON BHDCollections.GroupMemberid = GroupMembers.GroupMemberid INNER JOIN
                          BankAccounts ON GroupMembers.BAID = BankAccounts.BAID INNER JOIN
                          Currency ON BHDCollectionsDet.Currencyid = Currency.Currencyid INNER JOIN
                          CurrencyDetails ON Currency.Currencyid = CurrencyDetails.Currencyid INNER JOIN
                          Banks ON BankAccounts.Bankid = Banks.Bankid
    GROUP BY BHDCollectionsDet.Quantity, BHDCollections.BHDDate, BankAccounts.Bankid, BHDCollectionsDet.Currencyid, CurrencyDetails.DenominationType,
                          CurrencyDetails.Denomination, BHDCollectionsDet.Denomination, Banks.Bankname,BHDCollections.BHDCollectionid
    HAVING      (BHDCollections.BHDDate BETWEEN @FromDate AND @ToDate) AND (BankAccounts.Bankid = @Bankid) AND (CurrencyDetails.DenominationType = 'Currency') AND
                          (CurrencyDetails.Denomination = BHDCollectionsDet.Denomination)
    UNION ALL
    SELECT     BHDCollectionsDet.Quantity AS COINS, 0 AS BN, BHDCollections.BHDDate AS CollectionDate, BHDCollectionsDet.Currencyid,
                          (BHDCollections.BHDCollectionid) AS DSLIPS, Banks.Bankname
    FROM         BHDCollections INNER JOIN
                          BHDCollectionsDet ON BHDCollections.BHDCollectionid = BHDCollectionsDet.BHDCollectionid INNER JOIN
                          GroupMembers ON BHDCollections.GroupMemberid = GroupMembers.GroupMemberid INNER JOIN
                          BankAccounts ON GroupMembers.BAID = BankAccounts.BAID INNER JOIN
                          Currency ON BHDCollectionsDet.Currencyid = Currency.Currencyid INNER JOIN
                          CurrencyDetails ON Currency.Currencyid = CurrencyDetails.Currencyid INNER JOIN
                          Banks ON BankAccounts.Bankid = Banks.Bankid
    GROUP BY BHDCollectionsDet.Quantity, BHDCollections.BHDDate, BankAccounts.Bankid, BHDCollectionsDet.Currencyid, CurrencyDetails.DenominationType,
                          CurrencyDetails.Denomination, BHDCollectionsDet.Denomination, Banks.Bankname,BHDCollections.BHDCollectionid
    HAVING      (BHDCollections.BHDDate BETWEEN @FromDate AND @ToDate) AND (BankAccounts.Bankid = @Bankid) AND (CurrencyDetails.DenominationType = 'COIN') AND
                          (CurrencyDetails.Denomination = BHDCollectionsDet.Denomination)),
    TEMP_TABLE2 AS
    SELECT CollectionDate,Bankname,DSLIPS AS DSLIPS,SUM(BN) AS BN,SUM(COINS)AS COINS  FROM TEMP_TABLE Group By CollectionDate,DSLIPS,Bankname
    SELECT CollectionDate,Bankname,count(DSLIPS) AS DSLIPS,sum(BN) AS BN,sum(COINS) AS coins FROM TEMP_TABLE2 Group By CollectionDate,Bankname
    HAVING COUNT(DSLIPS)<>0;

    Without seeing an execution plan of the query it is hard to suggest something useful. Try insert the result of UNION ALL to the temporary table and then perform an aggregation on that table, not a CTE.
    Just
    SELECT CollectionDate,Bankname,DSLIPS AS DSLIPS,SUM(BN) AS BN,SUM(COINS)AS COINS  FROM
    #tmp Group By CollectionDate,DSLIPS,Bankname
    HAVING COUNT(DSLIPS)<>0;
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • HT5521 I have a lightning to usb cable which is 2m in length.  Is there any known issues with trying to recharge an iPad 4 with this longer length.  It seems to me it is taking much longer than a 1m cord to recharge.

    I have a lightning to usb cable which is 2m in length.  Is there any known issues with trying to recharge an iPad 4 with this longer length?  It seems to me it is taking much longer than a 1m cord to recharge.

    Axel,
    I'm afraid a new SSD won't be different from your bad USB stick. I had similar issues over USB with both a (no-brand) stick and TWO 64gb Kingston SSDNow's (running Kubuntu 12.04 with Kernel 3.11, ia_64): it all runs exceptionally well (wanna know how it feels like booting in 5 sec?) for a few days - then suddenly you find yourself facing that dreaded (initramfs) prompt. You ask yourself: why? Did I upgrade grub lately? Did I upgrade the Kernel? I don't recall so. Ok, let's fix this... insert favorite live cd, boot, fsck...what???? THOUSANDS of errors??? Hundreds of files and directories corrupted, and the system is unusable - Reinstall everything from scratch onto another drive.
    Rinse and repeat: did this 3 times. Then I found this analysis:
    http://lkcl.net/reports/ssd_analysis.html
    I also suspect USB power interrupts more abruptly than SATA power, at shutdown - basically aggravating any power interruption damages. So now I'm going to:
    - buy an Intel S3500!
    - add commit=1 to my mount options in /etc/fstab
    - edit shutdown procedure to add a 5-10 sec pause after unmounting drives.
    Just my two cents.
    Andrea
    Last edited by andreius (2013-12-29 16:51:04)

  • Find/Change taking much longer in CS4

    Has anyone noticed that find/changes are taking much much longer in CS4
    vs. CS3? My script adds a temporary text frame on the first page, then
    does a whole bunch of find/changes and then moves that text to the end
    of the selected story. These find/changes are taking at least 20x as
    long as CS3.

    Same exact machine etc. I am using the ME version so this might be an ME bug. That's really what I want to know, if people with the regular version are seeing the same results. This has really put a dent into my work (I spend most of time converting documents from an older publishing system) and has kept me from being able to use CS4.
    Here is the code:
    var myBold = CreateStyleBold() //This function runs quickly as expected
    findChangeGrep("Bold",myBold)
    function findChangeGrep(find, change){
    app.findGrepPreferences = app.changeGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences.appliedCharacterStyle = myDoc.characterStyles.item("[None]");
    app.findGrepPreferences.fontStyle = find;
    app.changeGrepPreferences.appliedCharacterStyle = change;
    myStory.changeGrep(); //Here is where it is taking a very long time.

  • Taking too long to save projects

    Hi...when I save my project it takes a really long time to
    save. Sometimes as long as a half hour. I am using a 2.3 gig
    processor, and have lots processing speed. When I look in
    "applications" running, I notice that 2 adobe ICONs present
    themselves. I also notice that only 50% of the CPU is being used.
    Why is it taking so long to save these projects? The file size is
    4679.2KB and the Resolution is 720-540. 24 slides with audio and
    pictures. Please give me your thoughts?

    Hi Paully1 and welcome to our community
    There could be many reasons.
    * Your path and file name could be too long
    * Your project could be too large
    * Captivate may need to be "Reset"
    * You could be saving to a network drive
    Check the following links for more:
    Preventing corruption
    Can't record
    demonstration
    Cheers... Rick

  • Report script taking too long to export data

    Hello guys,
    I have a report script to export data out of a BSO cube. The cube is 200GB in size. But the exported text file is only 10MB. It takes around 40 mins to export this file.
    I have exported data of this size in less than a minute from other DBs. But this one is taking way too long for me.
    I also have a calc script for the same export but that too is taking 20 mins which is not reasonable for a 10MB export.
    Any idea why a report script could take this long? Is it due to huge size of database? Or is there a way to optimize the report script?
    Any help would be appreciated.
    Thanks

    Thanks for the input guys.
    My DATAEXPORT is taking half the time than my report script export. So yeah it is much faster but still not reasonable(20 mins for one month data) compared to other DBs that are exported very quick.
    In my calc I am just FIXING on level 0 members for most of the dimensions against the specific period, year and scenario. I have checked the conditions for an optimal report script, I think mine is just fine.
    The outline has like 15 dimensions in it and only two of them are dense. Do you think the reason might be the huge size of DB along with too many sparse Dims?
    I appreciate your help on this.
    Thanks

  • KeyNote '08 Taking Much Longer than KeyNote '06

    Hello All,
    Up to a month ago, we were running iWorks '06 on a 2.16GHz(white plastic, Serial # W87...) iMac. Just upgraded to iWorks '08 on a 2.4GHz (metal, Serial # W88...) iMac.
    We use large (5mb) animated gifs in our KeyNote presentations. The initial KeyNote setup would process the animated gif to the slide (as determined by the presence of the spinning "color wheel") within a few seconds. This newer setup, however, takes 2-3 minutes.
    This is a big step backward for us. Any suggestions as to how we can speed up this processing?
    Thanks,
    Shawn Rampy
    Message was edited by: wxman123

    1) Which codec are you exporting to ?
    When exporting FCPx is "rendering" and thus accessing the CPUs core(s). Fcpx 10.0.7 had something fundamental change to it... Certain operations really sped up while others slowed down.
    Perhaps this is what you are experiencing.
    When you say slower.... Do you mean... Half as fast ?

  • Why is it taking SO long to export?

    I have trying to export a project for a week now. This is footage that I got from my Canon HDV camera. It is something that I got off of my DVR. Quality looks fine on my computer but by the time that I get it to a DVD it looks awful. First thing I tried was to just put it on the media server to get it to iDVD. I used the medium setting. Took 2 hours to export a 40 minute project. So after doing that with another project I exported them to iDVD. It told me I had to have a Dual Layer DVD just to fit two 40 minute videos, plus it had to encode them. So I thought I would try to just use Quicktime export. I made sure that it was not being compressed by Quicktime. I start to export and it take about 40 minutes, then that bar disappears and a new one begins to creep across, it says the estimated time is 5000 minutes. Granted it is counting down pretty quickly but I come back about 30 minutes later and it is only about 10% of the way done.
    I'm getting really frustrated here. I should be able to fit full quality video that is only 80 minutes on a standard DVD. Even if I can't I should be able to fit 80 minutes of full video on a DL DVD without compressing it. Why is this so hard? Any ideas?

    Took 2 hours to export a 40 minute project.
    Previous version of iMovie rendered each transition, title, special effect, as a physical file (which is why rendering took so long), stored it in your project, updated a "reference" file which represented the current status of your timeline. iMovie '08, on the other hand, performs all of it rendering at the time of export and then compresses the file for your selected export specification.
    So after doing that with another project I exported them to iDVD. It told me I had to have a Dual Layer DVD just to fit two 40 minute videos, plus it had to encode them.
    Sounds like you forgot to change your iDVD output mode from the 60-minute HQ mode to the extended 90-mode here. Remember iDVD encodes to MPEG2/PCM and not MPEG2/AC3.
    I start to export and it take about 40 minutes, then that bar disappears and a new one begins to creep across, it says the estimated time is 5000 minutes.
    First bar was probably for the "menu" and the second was probably for the movie content. BTW, do you have have iDVD set to encode in the background or to begin encoding only when you manually start the burn process?

  • Cursor taking much longer time

    Is there any solution to optimize this? As it is taking more than 2 hours to update the table.
    Stats about the table records count:
    table_1 = 0.3milliions
    table_2 = 89k
    table_3 = 2.5 millions
    table_4 = 6k
    =========================================
    cursor c1 is
    SELECT SUM (A.w_amount) AS total_comp, D.emp_no
    FROM table_1 A,
    table_2 B,
    table_3 C,
    table_4 D
    WHERE A.emp_no = B.emp_no
    AND A.check_id = B.check_id
    AND A.emp_no = C.emp_no
    AND D.emp_no = C.emp_no
    AND A.earn_code IN ('REM')
    AND B.check_date >= C.elig_dt
    AND ee.time_s_key = user2.time_pkg.fx_time_key()
    GROUP BY D.emp_no;
    BEGIN
    FOR cur_row IN c1
    LOOP
    UPDATE table_4
    SET gross_comp = cur_row.total_comp
    WHERE cur_row.emp_no = table_4.emp_no;
    END LOOP;
    END;
    ======================================

    time_key_var := user2.time_pkg.fx_time_key();
    update table_4 D
    set gross_comp = (
    SELECT SUM (A.w_amount) AS total_comp, D.emp_no
    FROM table_1 A,
    table_2 B,
    table_3 C
    WHERE A.emp_no = B.emp_no
    AND A.check_id = B.check_id
    AND A.emp_no = C.emp_no
    AND D.emp_no = C.emp_no
    AND A.earn_code IN ('REM')
    AND B.check_date >= C.elig_dt
    AND ee.time_s_key = time_key_var
    GROUP BY D.emp_no
    where exists (
    SELECT null
    FROM table_1 A,
    table_2 B,
    table_3 C
    WHERE A.emp_no = B.emp_no
    AND A.check_id = B.check_id
    AND A.emp_no = C.emp_no
    AND D.emp_no = C.emp_no
    AND A.earn_code IN ('REM')
    AND B.check_date >= C.elig_dt
    AND ee.time_s_key = time_key_var
    );

  • Using expdp to do a schema export is taking extremely long time

    I am using expdp in schema mode to export a 300 gigbyte database.
    The job status report 99% complete after about 2 hours .
    But now the job has been running 30 hours and is not finish.
    I can see that it is exporting the domain indexes and had been exporting
    the last index for the last 5 hours. Something is not working because I
    looked at the table the index is using and it has no data. So, why is it taking
    so long to export an index that has no data?
    Can someone tell if there is a way to bypass exporting indexes and a easy way
    to recreate the indexes if you do?
    I am using oracle 11g and expdp utility.

    I checked the log file and there are no errors in the file.
    There are no ORA- xxxx error messages.
    The last line in the log file is as follows:
    "Processing object type schema_export/table/index/domain_index/index "
    I just checked the export job run this morning and it is still on the same
    index object "A685_IX1" . This is a spatial index. It has been sitting at
    this same object according to the job status for at least 24 hours.

  • AE CC - saving projects takes much longer than in CS6

    I've noticed that After Effects CC takes much longer to save my current project than previously (about 2-3 minutes). I'm used to saving quite often so this is slowing down my workflow.
    The project was imported from AE CS6. I've tried starting a new project and importing the previous one manually (instead of a conversion). Same lag.
    All unused footage has been taken out and the footage has been consolidated.
    The AE CS6 project file and AE CC file are about 15mb so CC is not any bigger.
    There are about 50 files in Arri Raw 3K, the rest is in DPX and ProRes 1080p.
    I'm working from a Macbook Pro Retina 16GB Ram and all media and cache are on an external Lacie Big Disk thunderbolt Raid SSD.
    My impression is that AE CC is indexing all the files before saving so it's going through all the RAW sequenced files. This could slow down the saving process quite a lot.
    Is anyone experiencing the same lag time while saving projects?

    I'm having the same issue on my PC, saving is taking much longer and is also happening every time I RAM preview. Very strange, and in fact now its having trouble accessing the save location, a local hard drive. any answers for this isse?

Maybe you are looking for

  • Sync-Async Integration

    Hi friends, I have a scenario where two sides are web services.  One WS is Sync and other side is Async.  Is there any way to do Sync-Async integration other than ccBPM ? You suggestions are welcome.

  • 6500 Cable Connectivity Problem

    Hello, I have just upgraded my phone to a Nokia 6500. I have installed the software on my pc. I have connected the cable to the phone and it has asked me to select the type of connection e.g. pc suite etc. When I select pc suite nothing connects to t

  • Edit Locally - Temporary file not removed after check in

    Hello, I am editing a Word document Abc.doc with Edit Locally (using ActiveX). After having done editing the document, I save the document and close MS Word. Then I check in the document by clicking on the button "Check In Now" in the portal screen.

  • Bulk in Bind exception

    Hello there, I wanted to ask is there a limitation for use of FORALL with PL SQL table.COUNT i'm getting error Bulk in Bind exception by the following codesnippet: FORALL i in 1 .. cst.COUNT INSERT ........ COMMIT; END LOOP; Database is 10g

  • ACE working with IronPort WSA server farm

    We have an ACE load balancing a group of Ironport WSA. The WSA are working with the feature IP Spoofing, then the request to WWW has the source ip address of the WSA client and not the WSA itself. We follow the documento behind, but it is not working