Problem with slow execution on a cFP-2120

I have an application that runs on a cFP-2120, using web interface for the user to interact with the program.
I have noticed that in order to get the web interface to get updated I have to use property nodes and write to the value property, see this article:
http://digital.ni.com/public.nsf/allkb/FC5024A5DD6344C886256C8C0054689B?OpenDocument
However, this seems to give me a serious performance hit, as described here:
http://forums.ni.com/ni/board/message?board.id=170&thread.id=153531&view=by_date_ascending&page=1
I have tested with this code, and with my LV 8.2 a loop that uses 277ms to complete when writing directly to a indicator will use 203159ms when using a property node.
So, I need to update several front panel objects using the value property, but can't afford the cpu time. Does anyone have a suggestion how to do this as efficiently as possible? The problem is apparantly that using the value property requires the front panel to be loaded - can I for instance avoid doing this once for each variable?

I've changed the vi now so it only writes to value property when a value has changed. This has cut execution time in half, from 500ms to 250ms. I still think this is quite a lot...
To give you an indication of "size", the executeable is 1210kb with 2 dll's of 872 and 168kb.
I've not tried deploying a smaller (cut down?) version - what exactly do you mean?
With regards to writing to value instead of locals or directly - I've had problems with the values not updating - but not always - and the first link does suggest a bugfix. I'd like to know why wiring to value property is sometimes needed and sometimes not.

Similar Messages

  • Apex 4 , problem with collection executions

    Hi ,
    I am having the following problem with the execution of one collection :
    Reference thread : Re: APEX 4 , executing a remote procedure and populating data using collection
    DBNAME ---> list item which I build from the DB links which I built ( as dynamic query in the shared components from a local table which holds entries of dblink names )
    USERLIST --> list item of users which should display dynamicaly the users of that db link I choose in DBNAME ( based on a collection )
    buttons CANCEL and SUBMIT
    4- Initial COLLECTION page process which is calculated before Header :
    DECLARE
    q varchar2(4000);
    BEGIN
    IF APEX_COLLECTION.COLLECTION_EXISTS(P_COLLECTION_NAME => 'QRY1') THEN
    APEX_COLLECTION.DELETE_COLLECTION(P_COLLECTION_NAME => 'QRY1');
    END IF;
    q := 'SELECT username , username FROM sys.dba_users@'||:P23_DBNAME ;
    APEX_COLLECTION.CREATE_COLLECTION_FROM_QUERY_B(
    P_COLLECTION_NAME => 'QRY1',
    P_QUERY => Q);
    END;
    For USERLIST list item I am using the following in LIST OF VALUES DEFINITION :
    SELECT C001, C002 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME='QRY1'
    5 - to submit the values from the screen to the remote database procedure I am using the following submit process ON SUBMIT AFTER CALCULATIONS:
    DECLARE
    v_statement varchar2(255);
    BEGIN
    v_statement := 'begin
    Lock_User@&P24_DBNAME.(''&P24_USERLIST.'');
    insert into log values (1,''user locked'') ;
    commit ;
    end;';
    EXECUTE IMMEDIATE v_statement;
    END;
    The problem :
    The form runs sucessfully , where I the USERLIST changes dynamicaly when I change the DBNAME values , but as soon as I logout and login with another user1 , the collection does not execute and i get "ORA-01729: database link name expected".
    I login with user1 in edit mode and recreate the collection , run again , the collection executes successfuly .
    If I create a new user2 ( using the sample application pages ) and login with the new user2 , i have the same problem , thus I ho login with user2 in edit mode and try to run the collection .
    How can I control the collection to execute regardless of the application user logged in ??
    thanks in advance
    yousef

    Hi ,
    I am having the following problem with the execution of one collection :
    Reference thread : Re: APEX 4 , executing a remote procedure and populating data using collection
    DBNAME ---> list item which I build from the DB links which I built ( as dynamic query in the shared components from a local table which holds entries of dblink names )
    USERLIST --> list item of users which should display dynamicaly the users of that db link I choose in DBNAME ( based on a collection )
    buttons CANCEL and SUBMIT
    4- Initial COLLECTION page process which is calculated before Header :
    DECLARE
    q varchar2(4000);
    BEGIN
    IF APEX_COLLECTION.COLLECTION_EXISTS(P_COLLECTION_NAME => 'QRY1') THEN
    APEX_COLLECTION.DELETE_COLLECTION(P_COLLECTION_NAME => 'QRY1');
    END IF;
    q := 'SELECT username , username FROM sys.dba_users@'||:P23_DBNAME ;
    APEX_COLLECTION.CREATE_COLLECTION_FROM_QUERY_B(
    P_COLLECTION_NAME => 'QRY1',
    P_QUERY => Q);
    END;
    For USERLIST list item I am using the following in LIST OF VALUES DEFINITION :
    SELECT C001, C002 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME='QRY1'
    5 - to submit the values from the screen to the remote database procedure I am using the following submit process ON SUBMIT AFTER CALCULATIONS:
    DECLARE
    v_statement varchar2(255);
    BEGIN
    v_statement := 'begin
    Lock_User@&P24_DBNAME.(''&P24_USERLIST.'');
    insert into log values (1,''user locked'') ;
    commit ;
    end;';
    EXECUTE IMMEDIATE v_statement;
    END;
    The problem :
    The form runs sucessfully , where I the USERLIST changes dynamicaly when I change the DBNAME values , but as soon as I logout and login with another user1 , the collection does not execute and i get "ORA-01729: database link name expected".
    I login with user1 in edit mode and recreate the collection , run again , the collection executes successfuly .
    If I create a new user2 ( using the sample application pages ) and login with the new user2 , i have the same problem , thus I ho login with user2 in edit mode and try to run the collection .
    How can I control the collection to execute regardless of the application user logged in ??
    thanks in advance
    yousef

  • I had a problem with slowness so I used "reset". The popup ran forever so I stopped it. Now I can't remove or add the program.

    I had a problem with slowness so I used "reset". The popup ran forever so I stopped it. Now I can't use, remove, or add the program. How do I proceed?
    TIA,
    BWSwede

    You can paste that path in the command line in the Windows Explorer file manager.

  • Problem with different execution paths in hierarchical query

    Hello,
    I have problems with the following query:
    SELECT DISTINCT P.ID FROM PRODUCTELEMENTIMPL P WHERE ( ( LABEL = 'SomeLabel' AND PRODUCTELEMENTTYPE = 'SomeText' AND ( STATE = 'created' OR STATE = 'stored' OR STATE = 'archived' OR STATE = 'archivedRestored' ) ) ) START WITH P.ID = 42 CONNECT BY PRIOR P.ID = P.PARENT
    We have two databases (an Oracle 10g XE and Oracle10g Enterprise). In the XE Database the query is executed very fast, but in the main installation it takes minutes. If I "explain" the query I get two different execution paths:
    The fast:
    ID      PARENT_ID      LEVEL      SQL      Kosten      Anzahl Zeilen
    0      -      1      SELECT STATEMENT      20      49
    1      0      2      HASH UNIQUE      20      49
    2      1      3      FILTER      -      -
    3      2      4      CONNECT BY WITH FILTERING      -      -
    4      3      5      TABLE ACCESS BY INDEX ROWID PRODUCTELEMENTIMPL (TABLE)      -      -
    5      4      6      INDEX UNIQUE SCAN SYS_C0072201 (INDEX (UNIQUE))      2      1
    6      3      5      NESTED LOOPS      -      -
    7      6      6      BUFFER SORT      -      -
    8      7      7      CONNECT BY PUMP      -      -
    9      6      6      TABLE ACCESS BY INDEX ROWID PRODUCTELEMENTIMPL (TABLE)      19      49
    10      9      7      INDEX RANGE SCAN PRODUCTELEMENTIMPL_IDX1 (INDEX)      3      49
    11      3      5      TABLE ACCESS FULL PRODUCTELEMENTIMPL (TABLE)      19      49
    Slow:
    ID PARENT_ID LEVEL SQL Kosten Anzahl Zeilen
    0 1 SELECT STATEMENT 1 1
    1 0 2 HASH UNIQUE 1 1
    2 1 3 FILTER
    3 2 4 CONNECT BY WITHOUT FILTERING
    4 3 5 TABLE ACCESS BY INDEX ROW 3 1
    ID PRODUCTELEMENTIMPL (TABLE)
    5 4 6 INDEX UNIQUE SCAN SYS_C0 2 1
    020528 (INDEX (UNIQUE))
    6 3 5 TABLE ACCESS FULL PRODUCT 6628 1100613
    ELEMENTIMPL (TABLE)
    Any ideas how to avoid this full table scan?
    bye
    Roland Spatzenegger

    Hello,
    thank you for your replies. The indices and table schemas are the "same", but only the content for the tables was mirrored.
    We made some tests with dropping and/or analyzing the tables, but it didn't change anything.
    The main problem is that the query takes 33s in the productive environment for searching in a couple of rows. At the moment it's faster to make
    SELECT DISTINCT P.ID, P.STATE FROM PRODUCTELEMENTIMPL P WHERE ( ( LABEL = 'SomeLabel' AND PRODUCTELEMENTTYPE = 'SomeText' ) ) START WITH P.ID = 42 CONNECT BY PRIOR P.ID = P.PARENT
    and to test in the application if the state-values match ;-)
    If I add the hint /*+ no_filtering */ in the test environment, I get the same "slow" execution path as in the production environment. So the question is, what prevents the filtering in "connect by"?
    (I think in the fast version it filters only the results of the hierarchical query, in the slow version it first filters the whole table and joins/merge it with the hierachical result).
    bye
    Roland Spatzenegger

  • When is Apple going to fix the problem with slow Time Machine backups with Mavericks?

    I have been with Apple tech support and they got my Time Machine working by doing a spotlight re-indexing and a safe boot.  This worked for about three days and I am back to very slow backups.  It is impossible for Time Machine to back up every hour when it takes six hours to do the back up.  I don't want to take hours to re-index with spotlight all the time.  I think taking six hours to do an incremental backup is a bit much.  I see that there are many people that have this trouble and it all started with an upgrade to Mavericks.  The question is when is Apple going to fix this problem of slow backups with Time Machine for Mavericks.  I have wasted more time than I care to.  I am think of going back to Windows.  I need good solid backups of my machine and Apple has taken it away with the new Mavericks. Oh, I am using the UBS 3.0 connection so the drive should not be the problem.  Also this has occurred in about the last five months, so I am not sure this problem was in the original Marvericks.

    Allen Thanks for your reply.  All I can say is several months ago Time Machine quit working in a reasonable manner.  Right now I have a Time Machine backup that has been running all night and still has three hours to go to backup 6 GB of data.  I am using a OWC 1.5 TB drive connected directly to my MacBook with a USB 3.0 connection.  In the resent past I have added Dropbox, GoogleDrive and a MAMP server on which I am using a program called Learning With Text from Sourceforge.  There have been a lot of questions on the forum about people having very slow Time Machine back ups, so it appears to be a general problem.  I should also state I am getting this very slow backup after doing the Spotlight re-indexing and the Safe Restart procedure that was told to me by apple support.  I have a 750 GB drive in my MacBook Pro which I am constantly trying to keep at a 5% level of free space.  This might be a problem also.  However, I am working on a lot of things and like to have a lot of things on my drive.  Also the heavily loaded drive has not be a problem in the past.  This slow backup business started about three months ago, so something has happen in a very short time period.  Now it seems even the procedure that Apple support gave me is not working.  Currently I am in China and it is difficult to interact with Apple support to solve this problem, but because I am in China having my computer backed up is critical. I have run the EtreCheck and am attaching the results below. I would appreciate any suggestions.  If necessary I will clear out more of my hard drive if that appears to be a solution.  The Time Machine drive was recently reformed so I only have a few backups on it.  I also don't run the Time Machine all the time as I don't want multi-hour backups running all the time.  I run it every few days.
    Here is the info from EtreCheck:
    Hardware Information:
              MacBook Pro (15-inch, Mid 2012)
              MacBook Pro - model: MacBookPro9,1
              1 2.6 GHz Intel Core i7 CPU: 4 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 1024 MB
              NVIDIA GeForce GT 650M - VRAM: 1024 MB
    System Software:
              OS X 10.9.2 (13C1021) - Uptime: 0 days 10:18:59
    Disk Information:
              APPLE HDD HTS727575A9E362 disk0 : (750.16 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 749.3 GB (54.06 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              HL-DT-ST DVDRW  GS31N 
    USB Information:
              VIA Labs, Inc.    USB3.0 Hub       
                        OWC Elite Pro mini C 1.5 TB
                                  EFI (disk1s1) <not mounted>: 209.7 MB
                                  NewMBP-TimeMachine-1.1 (disk1s2) /Volumes/NewMBP-TimeMachine-1.1: 1.5 TB (691.6 GB free)
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
              Apple Inc. Apple Internal Keyboard / Trackpad
              Logitech USB Receiver
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [not loaded] com.LaCie.ScsiType00 (1.2.2) Support
              [not loaded] com.lacie.driver.LaCie_RemoteComms (1.0.1) Support
              [not loaded] com.oxsemi.driver.OxsemiDeviceType00 (1.28.0) Support
              [not loaded] com.roxio.BluRaySupport (1.1.6) Support
              [not loaded] com.roxio.TDIXController (2.0) Support
              [not loaded] com.seagate.driver.PowSecDriverCore (5.0.1) Support
              [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.0.1) Support
              [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.0.1) Support
              [not loaded] com.seagate.driver.SeagateDriveIcons (5.0.1) Support
              [kext loaded] com.symantec.kext.SymAPComm (11.2.2f3) Support
              [not loaded] com.symantec.kext.confidentialData (1.4f5) Support
              [not loaded] com.symantec.kext.filesecurity (1.4.3f19) Support
              [kext loaded] com.symantec.kext.fw (1.0.3f5) Support
              [kext loaded] com.symantec.kext.internetSecurity (1.3.2f5) Support
              [kext loaded] com.symantec.kext.ips (1.3.1f7) Support
              [kext loaded] com.symantec.kext.pf (4.2.1f7) Support
              [not loaded] com.wacom.driver.HIDTablet (5.0.1) Support
    Startup Items:
              cma: Path: /Library/StartupItems/cma
              MySQLCOM: Path: /Library/StartupItems/MySQLCOM
              ParallelsDesktopTransporter: Path: /Library/StartupItems/ParallelsDesktopTransporter
              ParallelsTransporter: Path: /Library/StartupItems/ParallelsTransporter
              Tablet: Path: /Library/StartupItems/Tablet
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.adobe.versioncueCS4.plist Support
              [loaded] com.barebones.authd.plist Support
              [not loaded] com.barebones.textwrangler.plist Support
              [loaded] com.bombich.ccc.plist Support
              [loaded] com.mcafee.virusscan.eupdate.plist Support
              [running] com.micromat.TechToolProDaemon.plist Support
              [loaded] com.oracle.java.Helper-Tool.plist Support
              [loaded] com.oracle.java.JavaUpdateHelper.plist Support
              [loaded] com.prosofteng.DriveGenius.locum.plist Support
              [running] com.symantec.avscandaemon.plist Support
              [running] com.symantec.deepsight-extractor.plist Support
              [running] com.symantec.diskMountNotify.plist Support
              [loaded] com.symantec.MissedTasks.plist Support
              [loaded] com.symantec.navapd.plist Support
              [running] com.symantec.navapdaemonsl.plist Support
              [loaded] com.symantec.Sched501-1.plist Support
              [loaded] com.symantec.Sched501-2.plist Support
              [loaded] com.symantec.Sched503-3.plist Support
              [loaded] com.symantec.Sched503-4.plist Support
              [running] com.symantec.sharedsettings.plist Support
              [running] com.symantec.symdaemon.plist Support
              [running] com.symantec.symSchedDaemon.plist Support
              [loaded] org.macosforge.xquartz.privileged_startx.plist Support
    Launch Agents:
              [loaded] com.adobe.CS4ServiceManager.plist Support
              [running] com.lacie.safemanager.daemon.plist Support
              [running] com.micromat.TechToolProAgent.plist Support
              [loaded] com.oracle.java.Java-Updater.plist Support
              [running] com.seagate.SeagateStorageGauge.plist Support
              [failed] com.sogou.SogouServices.plist Support
              [running] com.symantec.uiagent.application.plist Support
              [running] net.culater.SIMBL.Agent.plist Support
              [loaded] org.macosforge.xquartz.startx.plist Support
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist Support
              [loaded] com.adobe.ARM.[...].plist Support
              [loaded] com.google.keystone.agent.plist Support
              [running] com.wondershare.mobilegodaemon.plist Support
    User Login Items:
              GeekTool
              SIMBL Agent
              QQ
              Safari
              Calendar
              Google Drive
              Dropbox
              Day One
              Dictionary
              SymSecondaryLaunch
    Internet Plug-ins:
              Flip4Mac WMV Plugin: Version: 2.2.1.11  Support
              FlashPlayer-10.6: Version: 13.0.0.182 - SDK 10.6 Support
              iPhotoPhotocast: Version: 7.0
              Flash Player: Version: 13.0.0.182 - SDK 10.6 Outdated! Update
              AdobePDFViewer: Version: 9.5.5 Support
              Default Browser: Version: 537 - SDK 10.9
              QuickTime Plugin: Version: 7.7.3
              OfficeLiveBrowserPlugin: Version: 12.3.6 Support
              RealPlayer Plugin: Version: (null) Support
              Silverlight: Version: 4.0.51204.0 Support
              JavaAppletPlugin: Version: Java 7 Update 55 Check version
    Safari Extensions:
              Video Converter: Version: 4.0.0
              AllMyTube: Version: 4.1.0.0
              Open in Internet Explorer: Version: 1.0
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              QQMail: Version: 1.0.2.0 - SDK 10.7 Support
              txftn: Version: 1.0.0.6 Support
    3rd Party Preference Panes:
              Adobe Version Cue CS4  Support
              Flash Player  Support
              GeekTool  Support
              Growl  Support
              Java  Support
              MacFUSE  Support
              MenuMeters  Support
              MySQL  Support
              Norton\nQuickMenu  Support
              Paragon NTFS for Mac ® OS X  Support
              Pen Tablet  Support
              Perian  Support
              TechTool Protection  Support
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 697.84 GB Disk used: 647.49 GB
              Destinations:
                        NewMBP-TimeMachine-1.1 [Local] (Last used)
                        Total size: 1 
                        Total number of backups: 11
                        Oldest backup: 2014-03-18 15:09:46 +0000
                        Last backup: 2014-04-29 23:24:28 +0000
                        Size of backup disk: Too small
                                  Backup size 1  < (Disk used 647.49 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                  47%          SymAVScanDaemon
                   7%          Finder
                   7%          WindowServer
                   2%          mds
                   1%          NortonAutoProtect
    Top Processes by Memory:
              385 MB          NortonAutoProtect
              262 MB          mds_stores
              180 MB          Safari
              139 MB          WindowServer
              115 MB          Finder
    Virtual Memory Information:
              1.15 GB          Free RAM
              2.87 GB          Active RAM
              1.83 GB          Inactive RAM
              1.05 GB          Wired RAM
              1.02 GB          Page-ins
              380 MB          Page-outs
    I hope you can see something that can be fixed.

  • Replication problems with slow ( 20kB/s line)

    Yesterday we noticed on our production database that replication did not run anymore because of an error in one record. This forced us to re-iniitalize the subscription. Maybe this is exactly what we should not have done but we did . The result was that
    production stopped because of the first part of the replication to dump all the tables and make new empty ones. The problem is that this does not seem a good idea for a slow connection between 2 machines. Better would be that we could just restart the replication
    from a backup but as far as I know this is not possible.
    So my question is now what can we do to speed up the replication if there is no way that we can improve the line quality. (One server is in NL and the other in CN, and as everybody know there is the great big firewall in Bejing which controlls all the internet
    traffic. )
    Is there a way to prevent replication from emptying the tables and fill them again.
    Many thanks Peter Kaldenberg

    I know that probably there is a problem with our firewalls but the fact remains that we are facing with slow connections so I ques what can we do at SQL level to speed replication or better not to have to do bulk copy over the net. In-fact why does SQL not
    use some kind of delta protocol. When only data is involved this should work. Of course when the layout of tables has been changed then it makes sense the tables has to be rebuild but not for data.
    Maybe a solution could be to use check-sum checking and only update these records which are different and of course add the missing once.
    Additional why does the replication not give information how far the bulk copy is at least then the user knows its still working. Now what ever setting I change after 10 min the replication does not give any useful information. Which results in that the
    user is thinking that the replication does not work anymore.
    What about 3rd party replication tools are they any better?
    Peter

  • Problems with slow fps (or is my computer really that bad?) [solved]

    I'm having quite some trouble with my fps in games like StarCraft 2 (actually it's just here that I noticed it). Anyway I've decided to test how good my computer actually is using unigine heaven benchmark.
    And it's really bad. As I said I have slow fps in Starcraft in which fps is around 15, but in unigine it falls to average 4/5 depending on how I set it.
    While my computer is quite old, it's still not that old, and I don't have any problem with other graphically demanding games like C&C3 or Medieval 2: Total War.
    My hardware is:
    System: Linux 2.6.36-ck x86_64
    CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 4400+ 2310MHz MMX+ 3DNow!+ SSE SSE2 SSE3 HTT
    GPU: GeForce 8500 GT PCI Express 260.19.12
    System memory: 2008 Mb
    Video memory:  512 Mb
    (this is what unigine "shows")
    Also under "render" unigine shows this:
    Renderer: NVIDIA NV50 512Mb
    OpenGL vendor: NVIDIA Corporation
    OpenGL renderer: GeForce 8500 GT/PCI/SSE2
    OpenGL version: 3.3.0 NVIDIA 260.19.12
    Found required GL_ARB_map_buffer_range
    Found required GL_ARB_vertex_array_object
    Found required GL_ARB_vertex_buffer_object
    Found required GL_ARB_half_float_vertex
    Found required GL_ARB_half_float_pixel
    Found required GL_ARB_occlusion_query
    Found required GL_EXT_texture3D
    Found required GL_EXT_texture_cube_map
    Found required GL_EXT_texture_sRGB
    Found required GL_EXT_texture_swizzle
    Found required GL_ARB_shader_object
    Found required GL_ARB_vertex_shader
    Found required GL_ARB_fragment_shader
    Found required GL_ARB_draw_buffers
    Found required GL_ARB_framebuffer_object
    Found required GL_EXT_framebuffer_blit
    Found required GL_EXT_framebuffer_multisample
    Found optional GL_ARB_draw_instanced
    Found optional GL_ARB_transform_feedback
    Found optional GL_ARB_draw_elements_base_vertex
    Found optional GL_ARB_blend_func_extended
    Found optional GL_ARB_uniform_buffer_object
    Found optional GL_ARB_geometry_shader4
    Found optional GL_ARB_gpu_shader4
    Found optional GL_EXT_Cg_shader
    Found optional GL_ARB_texture_rg
    Found optional GL_ARB_texture_array
    Found optional GL_ARB_texture_snorm
    Found optional GL_ARB_texture_multisample
    Found optional GL_ARB_texture_compression
    Found optional GL_ARB_texture_compression_rgtc
    Found optional GL_ARB_seamless_cube_map
    Found optional RGB10A2 render texture format
    Shading language: 3.30 NVIDIA via Cg compiler
    Maximum texture size: 8192
    Maximum texture units: 32
    Maximum draw buffers: 8
    Which, while I'm no expert, for me seems quite OK.
    So where's the problem?
    Is my computer really that old already?
    On the related note, sometimes KDE loses the window decoration or even more it just disappear. So it might be the nvidia driver (as you can see I use nvidia-beta).
    But I'm not sure if it's the driver or is it the graphics card.
    Thanks for any help. If nothing else you could at least tell your frame rate and hardware so I can compare if my computer is "where it supposed to be" or if something really is wrong with it.
    Last edited by Primoz (2010-11-01 01:26:56)

    Well I finally found the glxgears, and the fear I always feared, but didn't mentioned it in my OP came true. FPS is somewhere near the refresh rate of the monitor, and my monitor is also a TV (or should I say primary TV) so my refresh rate is 50hz or up to 60FPS. So I guess the actual and the biggest bottleneck is my monitor and not anything else. Well yeah not that my other hardware is any good, but I could say that the low FPS rate in StarCraft 2 and in Unigine Heaven is due to my bad monitor.
    I can say this is solved, but not removed until I get a new monitor.
    Edit: Actually there is another thing, how come that while my monitor refresh rate is 60; FPS in both Starcraft  and Unigine are so much lover - instead of 60FPS there are from 4-17FPS.
    Last edited by Primoz (2010-10-31 01:39:59)

  • Business Rule - Problem with Validation Execution

    I'm running into an issue where conditional Validation Execution is not working as expected. The background is that i have an Entity Object containing a few string attributes on which i must apply Regular Expression business rules to make sure only characters in a certain range is set. I am using a Not Matches regex on the following:
    .*[^\u0020-\uD7FF].*1 attribute is required, 2 are optional. The problem I am experiencing is with the 2 optional attributes.
    Since these are optional, I intended to use the Validation Execution tab so that the Rule is executed only when the attribute is not null. For example, here is what i tried for an attribute named Comments:
    Comments != nullNo validation occurred when I entered an invalid value, such as a string containing line breaks, in a corresponding ADF Faces page. For the heck of it, i experimented by setting the validation execution to the opposite of what i should be - in other words, trigger validation if the attribute is null, such as:
    Comments == nullWith this, the validation occurred as expected.
    Is this a bug, or am I misunderstanding something? I'm not particularly good with RegEx - is it possible this is due to some nuance of the expression?
    Version: JDeveloper 11.1.1.6.
    Thanks-
    -george

    i'm not sure if this is the correct answer or a workaround to the issue i had asked about. Given that caveat, if anyone else ever runs across this thread, what i found worked was to not use the attribute name in the Validation Execution tab's expression, but instead to just newValue as in the following:
    newValue != null

  • Problem with slow motion reversed clips

    Hi
    I've imported clips into iMovie 11 and can apply slow motion through Clip Adjustments. When I try to do both Slow Motion and Reverse all I get is a still clip. I tried both copying an existing Slow Motion clip and tried to reverse it and tried applying Reverse and Slow Motion at the same time to a normal clip without success. I've tried it with and without Stabilization. Any ideas?

    You are not alone! But I have not found a way to resolve the problem either! Could it be a fps problem?

  • Performance problem with slow VIEW from JDBC (fast from SQL Developer)

    Hi all,
    I'm experiencing following problem and would like to know if someone else also hit this one before and has a suggestion how to solve it:
    I have a pretty complicated SELECT statement that per definition returns only a few rows (~30). With no further optimization it takes ~20 seconds to return the full dataset in Oracle SQL Developer. If you add the */+ PUSH_PRED(name_of_some_inner_view) /* hint (hint is correct, stars got eaten by the OTN-forum syntax), the statement takes less than 0.5s to execute (still in SQL Developer). I saved the statement with the hint as VIEW. Selecting from the VIEW in SQL Developer is also fast.
    Now if I call the statement from JDBC (Tomcat webapp), I can see from the server console that the statement is 1:1 100% the same as the one I execute in SQL Developer. Nevertheless it takes about 20 seconds to complete.
    Here my details:
    SELECT banner FROM v$version;
    BANNER                                                                        
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production             
    PL/SQL Release 11.2.0.2.0 - Production                                          
    CORE     11.2.0.2.0     Production                                                        
    TNS for 32-bit Windows: Version 11.2.0.2.0 - Production                         
    NLSRTL Version 11.2.0.2.0 - Production                                          
    JDBC Driver used: some old odbc14.jar as well as current odbc6.jar for 11.2.0.2.0 from http://www.oracle.com/technetwork/da...10-090769.html
    SQL Developer: current version 3.2.20.09From my reading this could go wrong:
    - JDBC doesn't know the VIEW's column data types and Oracle behaves mysterious because of this (=there must be more to the SELECT than just the string, some meta-information)
    - For some reason the hint inside the VIEW is not used (unlikely)
    I also tried a Table Function/Pipelined table and selected from it as a workaround, but the result is the same: Selecting from Function is fast from SQL Developer, but slow from JDBC. All other statements that come from JDBC are as fast as they should be. I really don't know what to think of this and where the error might be.
    Is there some setting that tells Oracle not to use hints when called from JDBC?
    Thank you & Best regards,
    Blama

    Hi Bawer,
    that's what I'm thinking. Unfortunately I can't post it, as it is library code (not my lib). But in the debug-output I can see the SQL-String sent to the DB (which does include the hint).
    But I find the 2nd option you mention more likely anyway: Even if I put the hint into a VIEW and select from the view, the time-difference is there (it's even there if I use Table Functions/Pipelined table and select from the function).
    So I'd think it is more likely that something else is happening (e.g. Oracle is configured in a way that it does not use hints when called from JDBC or similar. Or the library sets some session options in order to prevent the usage of hints). But I don't know if there is even the possibility of doing so.
    Does the Oracle JDBC driver have the option to set these options?
    Does the Oracle DB have the option to set sth. like "ALTER SESSION SET dontUseHints = 'Y';"

  • Intermittant problems with slow motion and crash of Premiere Pro

    Many complain about Premiere Pro's instability.
    Since a couple of days I have the same problem. Every time I want to navigate from A to B, Adobe seems to either introduce a severe SLOW MOTION effect on it's own accord, that I never put in !!!, or it just CRASHES with an error message along the lines "Problem, Try again" or similar.
    This is utterly frustrating !!! I have been trying for over 6 hours today to get this remedied, but no luck.
    Looking back over the past days, the problems seem to have grown exponentially both in frequency and in duration.
    Of course, this is not about the program, but about the Premiere Pro Forums.
    Is there a 300-day refund period for Jives???
    I suggest you use that opportunity Adobe. This is

    OK, that makes sense.
    OS: Vista 64 Business
    Browser: Firefox 3.5.2 and IE 8.06
    Symptoms:
    1. The connection has been reset, try again. Often after 15 minute waits.
    2. Nothing happens, just waiting for Adobe and even after 30 minutes, still waiting.
    3. After posting, nothing happens. You press the post button, nothing for ages. You press Cancel, nothing.
    4. All other pages load without problems and are responsive.
    5. Top participants listing and most popular discussions are not displayed.
    Do you need further information?

  • Problems with slow download time when loading graphic

    I have a problem over here....
    i have to load many graphic files for my applications. i have a total of around 20 graphic files with a total of 4200*29400 pixels.
    i am using MediaTracker class object and addImage method.
    but i find the downloading time is very slow......
    is there any other solutions to reduce to download time???

    bcoz i have divided the graphics into many smaller scaled graphics...that's why i have to load one by one.....
    any other possible solutions??

  • Suddenly I am having a HUGE problem with slow response.

    Thunderbird has worked like a charm for over a year. Now, all of a sudden, it keeps hanging up when I try to write or send an email. I haven't changed my anti-virus software which is MS Defender. I can't think of anything else I could have done to cause the problem. For a while, I couldn't open MS Word attachments. That seems to be solved now for some unknown reason. I really like this email program when it works, but I need more dependability. Is anyone else having this problem?

    Try to start *Windows* in safe mode with networking enabled.
    - Win8 http://windows.microsoft.com/en-US/windows-8/windows-startup-settings-including-safe-mode
    - Win7 http://windows.microsoft.com/en-US/windows7/Start-your-computer-in-safe-mode
    - XP http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/boot_failsafe.mspx
    Still in Windows safe mode, start Thunderbird in safe mode.
    - https://support.mozilla.org/en-US/kb/safe-mode
    Does the problem go away?

  • SQL query with Bind variable with slower execution plan

    I have a 'normal' sql select-insert statement (not using bind variable) and it yields the following execution plan:-
    Execution Plan
    0 INSERT STATEMENT Optimizer=CHOOSE (Cost=7 Card=1 Bytes=148)
    1 0 HASH JOIN (Cost=7 Card=1 Bytes=148)
    2 1 TABLE ACCESS (BY INDEX ROWID) OF 'TABLEA' (Cost=4 Card=1 Bytes=100)
    3 2 INDEX (RANGE SCAN) OF 'TABLEA_IDX_2' (NON-UNIQUE) (Cost=3 Card=1)
    4 1 INDEX (FAST FULL SCAN) OF 'TABLEB_IDX_003' (NON-UNIQUE)
    (Cost=2 Card=135 Bytes=6480)
    Statistics
    0 recursive calls
    18 db block gets
    15558 consistent gets
    47 physical reads
    9896 redo size
    423 bytes sent via SQL*Net to client
    1095 bytes received via SQL*Net from client
    3 SQL*Net roundtrips to/from client
    1 sorts (memory)
    0 sorts (disk)
    55 rows processed
    I have the same query but instead running using bind variable (I test it with both oracle form and SQL*plus), it takes considerably longer with a different execution plan:-
    Execution Plan
    0 INSERT STATEMENT Optimizer=CHOOSE (Cost=407 Card=1 Bytes=148)
    1 0 TABLE ACCESS (BY INDEX ROWID) OF 'TABLEA' (Cost=3 Card=1 Bytes=100)
    2 1 NESTED LOOPS (Cost=407 Card=1 Bytes=148)
    3 2 INDEX (FAST FULL SCAN) OF TABLEB_IDX_003' (NON-UNIQUE) (Cost=2 Card=135 Bytes=6480)
    4 2 INDEX (RANGE SCAN) OF 'TABLEA_IDX_2' (NON-UNIQUE) (Cost=2 Card=1)
    Statistics
    0 recursive calls
    12 db block gets
    3003199 consistent gets
    54 physical reads
    9448 redo size
    423 bytes sent via SQL*Net to client
    1258 bytes received via SQL*Net from client
    3 SQL*Net roundtrips to/from client
    1 sorts (memory)
    0 sorts (disk)
    55 rows processed
    TABLEA has around 3million record while TABLEB has 300 records. Is there anyway I can improve the speed of the sql query with bind variable? I have DBA Access to the database
    Regards
    Ivan

    Many thanks for your reply.
    I have run the statistic already for the both tableA and tableB as well all the indexes associated with both table (using dbms_stats, I am on 9i db ) but not the indexed columns.
    for table I use:-
    begin
    dbms_stats.gather_table_stats(ownname=> 'IVAN', tabname=> 'TABLEA', partname=> NULL);
    end;
    for index I use:-
    begin
    dbms_stats.gather_index_stats(ownname=> 'IVAN', indname=> 'TABLEB_IDX_003', partname=> NULL);
    end;
    Is it possible to show me a sample of how to collect statisc for INDEX columns stats?
    regards
    Ivan

  • Is my laptop the problem with slow usb3 speeds?

    I'm sporting a dv6-7200ea system, as standard, and have bought a toshba stor.e Basics 2tb USB 3.0 portable hard drive.
    Toshiba state that it is capable of 5gbit speeds whereas the maximum i can attain is 100mb (1gbit?).
    I have asked toshiba directly and they say the problem lies within my laptop, not their hardware.
    Is this true? If so, what causes it??

    Unfortunately, Your notebook model does not have the extra space for a second SATA hard disk. I checked in the Maintenence & Service guide for your notebook series to see if if did. Models like the Envy17-3002ea, which I am currently using as a loaner, are optionally equiped with a pair or 750 GB hard disks. 
    Best regards,
    erico
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

Maybe you are looking for

  • Premiere Pro CC crashes after 25% rendering, has particular issues with directional blur effect

    I've only been using Premiere for a single project as my university specified we should use it, I'm not used to such a complex programme, or even video editing to be honest, so bear with me. (I'm following that guide on what information to add to que

  • Hyperlink in a header/footer

    I am writing the source of a PDF document in Word in which I need that all page footers show an image or text that links to the document table of contents. Word (2003) does not allow hyperlinks in headers/footers, so, I thought to add these directly

  • Is there a way to password protect a video folder for appletv?

    Hey guys, is there a way to password protect certain folders in Appletv? so the kiddies can't watch violent movies? Thanks Mo

  • Please help me in tuning the query....

    SELECT   /*+ LEADING (WCL_EXPO) */          MAX (a.clm_id) clm, a.clm_nbr, b.expo_nbr, b.entps_covg_cd_id,          'open' status, a.uw_cmpy_map_id, a.rt_st_id, a.src_sys_id, suit_nbr     FROM wcl_clm a,          wcl_expo b,          (SELECT DISTINCT

  • Dependant LOV on Search Field

    Hi, I am a newbie using ADF 11g. I am trying to create a Search page which takes 2 parameters. 1st Parameter is the Country LOV 2nd Parameter is the City LOV which is dependant on the 1st Parameter I have done the below steps but no with no positive