Slow Report Load Speed with SQL Command

I have the following SQL Command in my Crystal Report.  When I add the "SalesOrderDeliveries.omdDeliveryDate" to the report it examines 240,000 records and takes 3 minutes to completely load the report.  However, if I do not include this, it only examines 137,000 and only takes 10 seconds to run.
Why is this slowing down the report and running through more records than when it is omitted from the report?
SELECT
  SalesOrderDeliveries.omdDeliveryDate,
  SalesOrderDeliveries.omdSalesOrderID,
  Jobs.jmpJobID
FROM dbo.Jobs
INNER JOIN dbo.SalesOrderJobLinks
  ON Jobs.jmpJobID = SalesOrderJobLinks.omjJobID
INNER JOIN dbo.SalesOrders
  ON SalesOrderJobLinks.omjSalesOrderID = SalesOrders.ompSalesOrderID
INNER JOIN dbo.SalesOrderLines
  ON SalesOrders.ompSalesOrderID = SalesOrderLines.omlSalesOrderID
INNER JOIN dbo.SalesOrderDeliveries
  ON SalesOrderLines.omlSalesOrderID = SalesOrderDeliveries.omdSalesOrderID
WHERE SalesOrderDeliveries.omdShippedComplete = 0
AND Jobs.UJMPPMTRACK = -1
GROUP BY Jobs.jmpJobID,
         SalesOrderDeliveries.omdDeliveryDate,
         SalesOrderDeliveries.omdSalesOrderID
ORDER BY SalesOrderDeliveries.omdSalesOrderID

Try doing something like this for your query:
SELECT
  qryNextDate.nextDate,
  qryNextDate.omdSalesOrderID,
  Jobs.jmpJobID
FROM dbo.Jobs
INNER JOIN dbo.SalesOrderJobLinks
  ON Jobs.jmpJobID = SalesOrderJobLinks.omjJobID
INNER JOIN dbo.SalesOrders
  ON SalesOrderJobLinks.omjSalesOrderID = SalesOrders.ompSalesOrderID
INNER JOIN dbo.SalesOrderLines
  ON SalesOrders.ompSalesOrderID = SalesOrderLines.omlSalesOrderID
INNER JOIN (
  select omdSalesOrderID, min(omdDeliveryDate) as nextDate
  from dbo.SalesOrderDeliveries
  where omdShippedComplete = 0
  group by omdSalesOrderID) as qryNextDate
  ON SalesOrderLines.omlSalesOrderID = qryNextDate.omdSalesOrderID
where Jobs.UJMPPMTRACK = -1
ORDER BY SalesOrderDeliveries.omdSalesOrderID
This will get you just the minimum delivery date for each order, which should be the "next" due date.
-Dell

Similar Messages

  • Sql@loader-704  and ORA-12154: error messages when trying to load data with SQL Loader

    I have a data base with two tables that is used by Apex 4.2. One table has 800,000 records . The other has 7 million records
    The client recently upgraded from Apex 3.2 to Apex 4.2 . We exported/imported the data to the new location with no problems
    The source of the data is an old mainframe system; I needed to make changes to the source data and then load the tables.
    The first time I loaded the data i did it from a command line with SQL loader
    Now when I try to load the data I get this message:
    sql@loader-704 Internal error: ulconnect OCISERVERATTACH
    ORA-12154: tns:could not resolve the connect identifier specified
    I've searched for postings on these error message and they all seem to say that SQL Ldr can't find my TNSNAMES file.
    I am able to  connect and load data with SQL Developer; so SQL developer is able to find the TNSNAMES file
    However SQL Developer will not let me load a file this big
    I have also tried to load the file within Apex  (SQL Workshop/ Utilities) but again, the file is too big.
    So it seems like SQL Loader is the only option
    I did find one post online that said to set an environment variable with the path to the TNSNAMES file, but that didn't work..
    Not sure what else to try or where to look
    thanks

    Hi,
    You must have more than one tnsnames file or multiple installations of oracle. What i suggest you do (as I'm sure will be mentioned in ed's link that you were already pointed at) is the following (* i assume you are on windows?)
    open a command prompt
    set TNS_ADMIN=PATH_TO_DIRECTOT_THAT_CONTAINS_CORRECT_TNSNAMES_FILE (i.e. something like set TNS_ADMIN=c:\oracle\network\admin)
    This will tell oracle use the config files you find here and no others
    then try sqlldr user/pass@db (in the same dos window)
    see if that connects and let us know.
    Cheers,
    Harry
    http://dbaharrison.blogspot.com

  • TS1398 Ipad Minin -Cellular 64GB Slow down load speed ???

    Hello From Australia
    Question I recently boiught a new  Ipad Minin -Cellular 64GB and am very disapointed
    Reason is Very Very Slow down load speed ??? My Ipad Minin -Cellular 64GB when connected to our home Telstra  high-speed Wi-Fi  Internet has a maximum download speed of say 2Mbps while my laptop pro (side by side comparison) is downloading at  8Mbps ?? I am using a Telstra Technicolour :
    Wireless Access Point - Telstra
    Configuration
    Interface Enabled:
    Physical Address:
    a4:b1:e9:79:99:b5
    Network Name (SSID):
    Actual Speed [Mbps]:
    65
    Band:
    2.4GHz
    Region:
    Australia
    Channel Selection:
                                         Automatic                                     Manual                                  
    Channel:
                                         1                                     2                                     3                                     4                                     5                                     6                                     7                                     8                                     9                                     10                                     11                                     12                                     13                                  
    Channel Width:
                                         20MHz                                     20/40MHz                                  
    Allow multicast from Broadband Network:
    Security
    WPS Enabled:
    Broadcast Network Name:
    Allow New Devices:
                                         New stations are not allowed                                     New stations are allowed (via registration)                                     New stations are allowed (automatically)                                  
    Encryption:
    Disabled
    Use WEP Encryption
    Use WPA-PSK Encryption
    WPA-PSK Encryption Key:
    WPA-PSK Version:
                                         WPA                                     WPA2                                     WPA+WPA2                                  

    This is the iPod touch forum. I requested your post be moved to the iPad forum.

  • Better user experience for slow reports (loading in background, progressbar

    Hi
    In our application, some reports take a long time till they are displayed. Therefore it would be nice, if i could provide the user with some feedback (example: progressbar). Is it possible to have this? Upon print, when a pdf file is being constructed (in web) we already have such functionality in place, is it possible to have it generally?
    Mayb,e it would also be possible to have the report load the first page quickly, so the user has already something to look at, and load all the other needed data in a background thread. (i dont think it is possible, however, somebody may have an idea)
    Does anybody have an idea how we could achieve a better user experience for our reports. Any help is appreciated. Thanks.
    Greetings
    I am using:
    Crystal Reports 2008 (in Asp.net, Windows Forms)
    Version .NET 3.5 (SP1)
    PS: of course a very fast report would be the finest solution. However, i guess this will not be possible with our reports and the volume of data they access

    Hi Daniel,
    Crystal Report 2008 we have a inbuilt functionality of progress bar .If you are not getting progress bar for every report that means those reports are not taking to much time.
    For more info regarding progressbar  this check this link:
    [https://boc.sdn.sap.com/node/8035]
    Look for processingIndicatorDelay and processingIndicatorText.
    If you want to improve performance of report then we need to keep in mind few thing while creating report in Crystal report designer:
    Here are a few points related to performance issue .
    The performance of a report is related to:
    External factors:
    1. The amount of time the database server takes to process the SQL query.
    ( Crystal Reports send the SQL query to the database, the database process it, and returns the data set to Crystal Reports. )
    2. Network traffics.
    3. Local computer processor speed.
    ( When Crystal Reports receives the data set, it generates a temp file to further filter the data when necessary, as well as to group, sort, process formulas, ... )
    4. The number of records returned
    ( If a SQL query returns a large number of records, it will take longer to format and display than if was returning a smaller data set.)
    Report design:
    1. Where is the Record Selection evaluated?
    Ensure your Record Selection Formula can be translated in SQL, so the data can be filter down on the server, otherwise the filtering will be done in a temp file on the local machine which will be much slower.
    They have many functions that cannot be translated in SQL because they may not have a standard SQL for it.
    For example, control structure like IF THEN ELSE cannot be translated into SQL. It will always be evaluated
    in Crystal Reports. But if you use an IF THEN ELSE on a parameter, it will convert the result of the condition to
    SQL, but as soon as uses database fileds in the conditions it will not be translated in SQL.
    2. How many subreports the report contains and in section section they are located.
    Minimise the number of subreports used, or avoid using subreports if possible because
    subreports are reports within a report, and if you have a subreport in a details section, and the report returns 100
    records, the subreport will be evaluated 100 times, so it will query the database 100 times. It is often the biggest
    factor why a report takes a long time to preview.
    3. How many records will be returned to the report.
    Large number of records will slow down the preview of the reports. Ensure you only returns the necessary data on the report, by creating a Record Selection Formula, or basing your report off a Stored Procedure, or a Command Object that only returns the desired data set.
    4. Do you use the special field "Page N of M", or "TotalPageCount"
    When the special field "Page N of M" or "TotalPageCount" is used on a report, it will have to generate each page
    of the report before it displays the first page, therfore it will take more time to display the first page of the report.
    If you want to improve the speed of a report, remove the special field "Page N of M" or "Total Page Count" or formula that uses the function "TotalPageCount". If those aren't use when you view a report it only format the page requested. It won't format the whole report.
    5. Link tables on indexed fields whenever possible.
    6. Remove unused tables, unused formulas, unused running totals from the report.
    7. Suppress unnecessary sections.
    8. For summaries, use conditional formulas instead of running totals when possible.
    9. Whenever possible, limit records through selection, not suppression.
    10. Use SQL expressions to convert fields to be used in record selection instead of using formula functions.
    For example, if you need to concatenate 2 fields together, instead of doing it in a formula, you can create a SQL Expression Field. It will concatenate the fields on the database server, instead of doing in Crystal Reports.
    SQL Expression Fields are added to the SELECT clause of the SQL Query send to the database.
    11. Using one command as the datasource can be faster if you returns only the desired data set. It can be faster if the SQL query written only return the desired data.
    12. Perform grouping on server
    This is only relevant if you only need to return the summary to your report but not the details. It will be faster as less data will be returned to the reports.
    Hope this helps!!
    Regards,
    Shweta

  • Crystal Report performance - subreports or sql command?

    Hello,
    bit of quandary, I've an existing report that contains six subreports all sharing the same parameter to the main report, a 'projectID' field.
    The main report approximately returns 300 records/projects and each of the 6 subreports are passed the corresponding 'projectID' field 300 times.
    Now, I've succesfully incorporated the main report query and corresponding subreports into a TSQL command containing a number of subqueries in the Select clause:
    SELECT   PROJECT.PROJECTID, PROJECT.TITLE, PROJECT.REFERENCE, PROJECTSTATUS.PROJECTSTATUS, PROJECT.INPUT_DATE
    ,(SELECT max(INPUT_DATE) FROM V_PROJECT_NOTE AS VPN
    WHERE PROJECT.PROJECTID = VPN.PROJECTID) AS LastHeadline
    ,(SELECT
    MAX(CASE
         WHEN MODIFIED_DATE IS NULL THEN INPUT_DATE
         WHEN INPUT_DATE > MODIFIED_DATE THEN INPUT_DATE
              ELSE MODIFIED_DATE
    END) FROM ISSUE WHERE PROJECT.PROJECTID = ISSUE.PROJECTID) AS LastNewIssue
    ,(SELECT max(ISSUENOTE.INPUT_DATE) FROM ISSUE
    INNER JOIN ISSUENOTE ON ISSUE.ISSUEID = ISSUENOTE.ISSUEID
    WHERE PROJECT.PROJECTID = ISSUE.PROJECTID ) AS LastIssueNote 
    ,(SELECT max(modified_date) FROM V_PROJECT_RISK_LAST_AMMENDED AS VPR
    WHERE PROJECT.PROJECTID = VPR.PROJECTID) AS LastRiskLogUpdate
    ,(SELECT max(INPUT_DATE) FROM PROJECT_CHECKLIST AS PC
    WHERE PROJECT.PROJECTID = PC.PROJECTID) AS LastChecklistUpdate
    ,(SELECT max(input_date) FROM V_PROJECT_ACTIVITY_LAST_AMMENDED AS VPA
    WHERE PROJECT.PROJECTID = VPA.PROJECTID) AS LastGANTTUpdate 
    ,V_PROJECT_KEYCONTACT.USERNAME AS KeyContact
    ,(SELECT     USERPROFILE.USERNAME AS Supervisor
    FROM         USERPROFILE INNER JOIN
                          PROJECT_MEMBER AS SUPERVISOR ON USERPROFILE.USERID = SUPERVISOR.USERID RIGHT OUTER JOIN
                          PROJECT_MEMBER AS KEYCONTACT ON SUPERVISOR.PROJECT_MEMBERID = KEYCONTACT.PARENTID
    WHERE PROJECT.PROJECTID = KEYCONTACT.PROJECTID
    AND KEYCONTACT.KEY_CONTACT =1) AS Supervisor
    FROM         PROJECT INNER JOIN
                          PROJECTSTATUS ON PROJECT.PROJECTSTATUSID = PROJECTSTATUS.PROJECTSTATUSID LEFT OUTER JOIN
                          V_PROJECT_KEYCONTACT ON PROJECT.PROJECTID = V_PROJECT_KEYCONTACT.PROJECTID
    WHERE V_PROJECT_KEYCONTACT.USERNAME IN ('aaa','bbb','ccc')
    AND (PROJECTSTATUS.PROJECTSTATUS IN ('111', '222', '333'))
    AND ((PROJECT.TITLE NOT LIKE 'xxx%') AND (PROJECT.TITLE NOT LIKE 'yyy%') AND (PROJECT.TITLE NOT LIKE 'zzz%'))
    ORDER BY V_PROJECT_KEYCONTACT.USERNAME, PROJECT.INPUT_DATE
    Now, I've run both SQL Server Profiler and looked at the Performance Information in Crystal and the SQL command method is an order of magnitude less efficient!!
    I may have to post my query on a TSQL forum but was wondering if anyone on here can possible shed any light on it?
    Thanks in advance,
    Dom

    Dom,
    I assume that the last edit was to remove a few curse words...
    The reality is that we can give a good explanation as to why the sub-report version would execute faster that the command version w/o seeing the report (with the sub-reports included).
    Looking at the SQL, I can tell that it's a fairly expensive query, firing several sub-queries for every row returned by the outer query. That said, I sounds like the same thing is taking place with the sub-report version too... So I would think that the performance would be similar.
    The only thing that I can think of, and this is just a guess... With the sub-report version, each all queries are being run independently and then combined locally by CR, whereas the command version, everything is combined. The more complex the query, the harder the optimizer has to work to come up with the best execution plan... and the greater the likelihood that that the resulting plan isn't as optimized as it could be.
    That said, I'd still think the command version would be faster over all. Are you seeing real differences between the two reports, in the amount of time that it takes from refresh to final render?
    Either way, I think moving all of those sub-queries from the select list (where they are executing once for every row) down to the FROM area (where they only have to execute once) should increase the speed dramatically and surpass the sub-report version by a decent margin.
    Give this version of your SQL a test drive and see if it yields an improvement.
    SELECT  
    PROJECT.PROJECTID,
    PROJECT.TITLE,
    PROJECT.REFERENCE,
    PROJECTSTATUS.PROJECTSTATUS,
    PROJECT.INPUT_DATE,
    VPN.LastHeadline,
    ISSUE.LastNewIssue,
    ISSUE_NOTE.LastIssueNote,
    VPR.LastRiskLogUpdate,
    PC.LastChecklistUpdate,
    VPA.LastGANTTUpdate,
    V_PROJECT_KEYCONTACT.USERNAME AS KeyContact,
    Supervisor.Supervisor
    FROM PROJECT
    INNER JOIN PROJECTSTATUS ON PROJECT.PROJECTSTATUSID = PROJECTSTATUS.PROJECTSTATUSID
    LEFT OUTER JOIN V_PROJECT_KEYCONTACT ON PROJECT.PROJECTID = V_PROJECT_KEYCONTACT.PROJECTID
    LEFT OUTER JOIN (
         SELECT PROJECTID,
         max(INPUT_DATE) AS LastHeadline
         FROM V_PROJECT_NOTE
         GROUP BYPROJECTID) AS VPN ON PROJECT.PROJECTID = VPN.PROJECTID
    LEFT OUTER JOIN (
         SELECT PROJECTID,
         MAX(CASE
              WHEN MODIFIED_DATE IS NULL THEN INPUT_DATE
              WHEN INPUT_DATE > MODIFIED_DATE THEN INPUT_DATE
              ELSE MODIFIED_DATE END) AS LastNewIssue
         FROM ISSUE
         GROUP BY PROJECTID) AS ISSUE ON PROJECT.PROJECTID = ISSUE.PROJECTID
    LEFT OUTER JOIN (
         SELECT ISSUE.PROJECTID,
         max(ISSUENOTE.INPUT_DATE) AS LastIssueNote
         FROM ISSUE
         INNER JOIN ISSUENOTE ON ISSUE.ISSUEID = ISSUENOTE.ISSUEID
         GROUP BY ISSUE.PROJECTID) AS ISSUE_NOTE ON PROJECT.PROJECTID = ISSUE_NOTE.PROJECTID
    LEFT OUTER JOIN (
         SELECT PROJECTID,
         max(modified_date) AS LastRiskLogUpdate
         FROM V_PROJECT_RISK_LAST_AMMENDED
         GROUP BY PROJECTID) AS VPR ON PROJECT.PROJECTID = VPR.PROJECTID
    LEFT OUTER JOIN (
         SELECT PROJECTID,
         max(INPUT_DATE) AS LastChecklistUpdate
         FROM PROJECT_CHECKLIST
         GROUP BY PROJECTID) AS PC ON PROJECT.PROJECTID = PC.PROJECTID
    LEFT OUTER JOIN (
         SELECT PROJECTID,
         max(input_date) AS LastGANTTUpdate
         FROM V_PROJECT_ACTIVITY_LAST_AMMENDED
         GROUP BY PROJECTID) AS VPA ON PROJECT.PROJECTID = VPA.PROJECTID
    LEFT OUTER JOIN (
         SELECT PROJECTID,
         USERPROFILE.USERNAME AS Supervisor
         FROM USERPROFILE
         INNER JOIN PROJECT_MEMBER AS SUPERVISOR ON USERPROFILE.USERID = SUPERVISOR.USERID RIGHT
         OUTER JOIN PROJECT_MEMBER AS KEYCONTACT ON SUPERVISOR.PROJECT_MEMBERID = KEYCONTACT.PARENTID
         WHERE KEYCONTACT.KEY_CONTACT =1) AS Supervisor ON PROJECT.PROJECTID = Supervisor.PROJECTID
    WHERE V_PROJECT_KEYCONTACT.USERNAME IN ('aaa','bbb','ccc')
    AND (PROJECTSTATUS.PROJECTSTATUS IN ('111', '222', '333'))
    AND ((PROJECT.TITLE NOT LIKE 'xxx%')
    AND (PROJECT.TITLE NOT LIKE 'yyy%')
    AND (PROJECT.TITLE NOT LIKE 'zzz%'))
    ORDER BY V_PROJECT_KEYCONTACT.USERNAME, PROJECT.INPUT_DATE
    HTH,
    Jason

  • Crystal Report 8.5 with SQL SERVER 2005 problems

    Post Author: AREVA
    CA Forum: Data Connectivity and SQL
    Hi All !We have some problems with Crystal Reports version 8.5 with SQL Server 2005: 1) When we want to generate a report (using data in SQL Server 2005) we have a popup message error : "impossible to loaded pdssql.dll".2) If we want to use SQL Server 2005, which Crystal Reports version we must used ? Is there any restrictions with this connectivity with 8.5 version ?Please, let me known, all informations about SQL Server 2005 and Crystal Report 8.5.Thanks for all !Best regards Anthony

    Hello Kamlesh,
    There is no expectation that the ActiveX viewer (RDC?) from CR8.5 will work in any version of Visual Studio .NET. There is also no expectation that the ActiveX viewer from CR8.5 will work on a machine with a 64 bit operating system.
    You're using VS2008. You should migrate to the bundled edition of CR for VS2008 (v10.5), the ReportDocument object, and the .NET Windows form viewer or Web form viewer.
    Sincerely,
    Dan Kelleher

  • Loading Objects with SQL*Loader

    When loading a column object with SQL*Loader, is it possible to specify a column specific 'TERMINATED BY' clause in the control file?
    I've successfully defined column-level termination characters for regular columns and nested tables, but can't seem to find any way of achieving the same result with column objects.

    When loading a column object with SQL*Loader, is it possible to specify a column specific 'TERMINATED BY' clause in the control file?
    I've successfully defined column-level termination characters for regular columns and nested tables, but can't seem to find any way of achieving the same result with column objects.

  • Problem with loading file with SQL loader

    i am getting a problem with loading a file with SQL loader. The loading is getting
    terminated after around 2000 rows whereas there are around 2700000 rows in the file.
    The file is like
    919879086475,11/17/2004,11/20/2004
    919879698625,11/17/2004,11/17/2004
    919879698628,11/17/2004,11/17/2004
    the control file, i am using is like:-
    load data
    infile 'c:\ran\temp\pps_fc.txt'
              into table bm_05oct06
    fields terminated by ","
    (mobile_no, fcal, frdate )
    I hope, my question is clear. Please help, in solving the doubt.
    regards.

    So which thread is telling the truth?
    Doubt with SQL loader file wih spaces
    Are the fields delimited with spaces or with commas?
    Perhaps they are a mixture of delimiters and that is where the error is coming in?

  • Load API with SQL Loader

    Hi:
    Does somebody know if it is possible to upload data using an API in SQL Loader? Or SQL Loader is limited only to INSERT statements?
    I need to bulk a lot of employees and their usernames and resposibilities. They are almost 200 employees. What I would like to do is to create a csv file with all this information (first_name, last_name, hire_date, sex, email, if it is a purchaser, username, password, responsibility...), and through a request load all this to Oracle Ebs. I want to use hr_employee_api.create_employee, fnd_user_pkg.create_user and fnd_wf_engine.propagate_user_role. I don't want to enter data using inserts because hr_employee_api.create_employee api changes more than one table.
    I hope you can help me
    Thanks in advance

    Why don't you
    * load the data file into a temp table
    * write a procedure that reads the temp table and calls the 3 APIs with the data from each row
    Sandeep Gandhi

  • Slow report - loading the function masterReport.Load

    Hi All,
    We use the crystal report runtime 12 in a .net program,
    we have a report that takes roughly a minute to run but 55 seconds of this is caused by a bottleneck on the feature masterReport.Load,
    I am wondering if there is anyone who could explain what would cause this bottleneck and/or assist with the matter?
    Many Thanks in Advance,
    Gavin

    Gavin, you say:
    crystal report runtime 12 in a .net program, we have a report that takes roughly a minute to run but 55 seconds of this is caused by a bottleneck on the feature masterReport.Load,
    But what is the performance of the report in the designer? E.g.; the runtime will not perform any better than the designer. If the performance is better in the designer by something like 5 or 10 seconds, then  remember the total performance needs to be take into account. E.g.; load of report, db connection, view. E.g.; comparing from the time you you have logged on to the database and possibly filled out any parameters, is forgetting about the report load time, etc.
    You also do not specify the CR 2008 Service Pack you are using...
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Slow report load...

    Hello all,
    I am having an issue with report loading...I have one report particularly that I am testing with and monitoring results. I am running CR2008 SP2 & VS .NET 2003 & Win XP SP3. At the start of my app, I create a report, load and dispose...I also create a new viewer and assign it the report and then close and dispose of it also just for the heck of it.
    This report takes about 53 seconds to load (report.load(reportname) takes 53 seconds to execute), but when I do the initial report on app load it only takes about three seconds to complete. If I run the report again it takes three seconds. This is all well and good, but if I wait a while (around two mins) and then execute again it takes 53 seconds again. Everything is great inside the "two minute" mark. It seems that the performance of report.load() decreases and is completely horrible by two minutes after execution time. Any help with this? If tried about everything I know and I'm getting nowhere really...
    TIA
    -Coty

    Hi,
    Did you ever resolve this?
    I have a client who is reporting similar behaviour:
    We monitored the following behavior.
    After a restart of the web/app server the first opening of a report takes very long (60 seconds or sometimes longer). I think this is normal, because of using .NET to open the report, .NET needs some time to recompile its application after a server restart.
    - Afterwards, opening the report takes 7 seconds.
    - Opening the report a third time, the same result.
    - Logging off from the application and logging on again (also with a different user) it takes 7 seconds to open the report.
    - Logging off from the system, wait some time (30 minutes or longer) and the opening the same report again takes MUCH longer (20-30 seconds).
    - After this it runs normally (again 7 seconds).
    Thanks,
    Nicola

  • Slow DL burn speeds with DVR-112D

    Hi guys,
    hopefully someone out there can sort me out!
    OK. Mac Pro with DVD-RW DVR-112D Pioneer drive. Firmware revision is AC08. Using Toast 8.0.1 to burn.
    Recently bought 8x Datawrite DVD+R DL discs.
    The problem is Toast only burns them at 2x. Even in the speed drop down in Toast only "Best" and "2x" appear as a speed options.
    What gives? How can I burn at 8x? Is it Apple's firmware slowing things up?
    For the record I get better speeds from Verbatim DVD+R DL 2.4x discs (about 4x-5x).
    Thanks in advance,
    d0zer

    Different brands of discs can burn at different speeds in one drive. The same brand can burn at different speeds in different drives. When a blank is inserted, the drives reads information from the disk to determine possible burn speeds. Different model drives, or even just different firmware versions, have different capabilities.
    The first Verbatim DVD+R DL discs I bought had 2.4X printed on the box, but there was a yellow sticker saying up to 8X with some drives. The latest ones still say 2.4X, but there is now a yellow box (printed, not a sticker) that says "up to 6X speed with compatible high speed DVD+R DL drives". Disk Utility burns old and new ones at 8X with no verify errors.
    I have a Pioneer DVD-RW DVR-110 with version 1.41 firmware. A DVR-112 should do at least as well, unless the Apple firmware limits it.
    If you want the high burn speed, you will have to buy the Verbatim disks.

  • Error with sql commands with ms access

    hi!
    I'm having problems with sending commands like "create group x" and "alter database password" these aren't working.
    I'm using the jdbcodbc bridge. Simply doing this:
    Statement stmt = con.createStatement();
    stmt.executeUpdate ("alter database password a null");
    doesn't work.
    create group also don't work. Surely other stuff also don't work. But things like create table, drop table, create proc, do work.
    I can't do all the stuff that appears here.
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k/html/acadvsql.asp
    What may be happenning?
    can all that really work from java just like this or it don't?
    I'm using Access 2002 with access 2000 db format.
    Thanks.
    Greeting from chile.

    Well may be I am ignorant. I'm doing a real thing (for somebody) for the first time. They will buy few pcs. Also I think I would like they update to access 2000 or 2002 from 97 because of the semi stored procedures... They will do a lot of effort to just buy that but they really need it.
    I just actually wanted the ability to mantain users and assign permissions to do stuff from the same application. That would have been nice but it is not critical, at least execute procedures does work.

  • Report.Load Error with ASP application

    Hi,
    I experienced a few instances where my the follow statement where my ASP application (using VS2005, CRXI-R2+SP4, Datasets and CR Viewer on the server) thows an error on my server (running Server 2003).
            Dim Report As CrystalDecisions.CrystalReports.Engine.ReportDocument = _
                New CrystalDecisions.CrystalReports.Engine.ReportDocument()
            Try
                Report.Load(Server.MapPath("~/Private/Event/WebEvent.rpt"))
            Catch ex As Exception
                JavaMessage("Report Not Found")
                Exit Sub
            End Try
    I don't know what the exception is at this point. But something happens and the crystal reports in all my websites break uniformly. I need to restart IIS to get things back working. This has happended to me 3x now.
    Any ideas?
    Thanks,
    Eric

    Hi,
    As a best practice use Close() and Dispose() method also gc.Collect();
    Check if this helps!!
    Amit

  • Delete IFS file with sql command

    Hi
    Is it possible to remove a file from IFS using an sql command? If so, what is it?
    Thanks
    Hugo

    No, this is not possible, nor is it supported. You may use the Java API to delete a file.

Maybe you are looking for

  • How can I exchange all the images in a slide show with new ones

    I have 18 slide shows each is a different competition for our camera club. How can I exchange all the images from each slide show with new images as our club competitions commence? I am reluctant to just delete the slide show because I will have set

  • How to export sequence to P2 card?

    Hi everybody I saw a tutorial in Adobe webpage explaining how to export sequence back to P2 Card, as Premiere CS3.2 (updated) is able to recreate, from a edited timeline, all the folder and file system needed to be read on a P2 card under mxf format.

  • Reading from a txt file and storing into a list

    i want to read a list of counters(String) which are there in a flat txt file and store them into a List. Any suggestion will be helpful sanjeev

  • UCCX 7.0 Calls in Queue

    Is a readerboard required in order for CAD agents to see calls in queue? 

  • Refresh Media list in project

    Is there a way to make PP alphabetize the media list in the project bin? When I drag files to a bin that I create it does not alphabetize them until I restart the project. Is there a view-refresh option somewhere? Thanks!