JDev10.1.3EA Find in Files Bug

Could you pls review
JDev10.1.3EA Find in Files big files size limit
looks like the size limit only works for the first (big) file,
Thanks in advance

Hi,
can you explain a bit more what you mean? Did you set a size limit on the max. file size to compare ?
Frank

Similar Messages

  • Finder: Replacing files bug

    Hey there,
    this is about a bug (?) which makes me go crazy.
    Take two (preferably big >= 100mb) files and place one of them in a folder. Now mark both files and copy & paste them inside your folder.
    Finder now asks, what to do: Replace the file, that already sits inside your folder, or skip it. Now hit skip.
    Now what does Finder? Overwrite both files.
    Am I too stupid to see the logic behind this behaviour?! Is this intended? If Finder is going to overwrite both files anyway, why asking me in the first place?
    Info: freshly installed Snow Leopard.

    This seems to be user profile related.  Created a new user, switched to that user, re-tested and I do not see the same behavior.

  • Yeosmite Finder in fullscreen bug, tabs obstruct files

    When i launch finder in full screen and open multiple tabs everything is ok.
    Then using while in the list view, if i drag a file to a separate folder, the file lists move up, when i complete the drag and drop, finder's file list remains stuck with the tabs obstructing the first few files on every list.
    I have to go out of fullscreen to fix the problem, can this be stopped?

    TheGut wrote:
    If you search help for import csv files, you get the topic "using CSV or OFX files in a spreadsheet, which contains
    Using CSV or OFX Files in a Spreadsheet
    To add CSV or OFX data to an open spreadsheet:
    Select a sheet.
    Do one of the following:
    To create one or more new tables, drag a CSV or OFX file from the Finder onto the sheet’s canvas.
    This works for me for CSV files. It creates a table with columns and rows as expected.
    To add CSV or OFX data to an empty table, drag the CSV or OFX file onto the table.
    The data is added; additional columns are created if necessary.
    Works for me. It fills out the columns and rows as expected.
    To add CSV or OFX data to a table that contains data, drag the CSV or OFX file onto the table.
    Basically the same as dragging to an empty table. Works for me.
    The only things that don't work, and no one said it would, are
    1) If you copy the text from a CSV then paste it into a table it does not expand into columns and rows, just rows.
    2) If your "CSV" file has a TXT extension. It is therefore not technically a CSV file, it is a text file, and is treated differently.
    I think there may be a problem with international settings related to commas versus semicolons but that shouldn't be a problem in Georgia unless that is the country of and not the state of.
    A TXT file with tabs can be dragged into a table and it will expand into columns and rows. It creates a text box if dragged onto the canvas.

  • Error message on my development workstation: The system cannot find the file specified.

    Post Author: cseverin
    CA Forum: Crystal Reports
    Hi,
    I am currently developing an ASP.NET website using Visual Studio.NET 2005. I am using the .NET 2.0 framework, VB.NET as my programming language and I connect successfully to a SQL Server 2005 database.  I can select, insert, update and delete data from the database elsewhere in my project, so I know basic connectivity isn't an issue.  The problem seems to be with Crystal Reports. 
    I created a folder called 'Reports' in my project and added a Crystal Report file (OpenFiles.rpt) to it.  I designed the report and initally used a hard-coded SQL query as its datasource so I could quickly get the database fields onto the report and preview them.  All worked fine. 
    To make the report accessible to the rest of the website, I created an .xsd dataset file containing the three tables (and their corresponding tableadapters) that the report requires and then redeveloped the report using the dataset as the datasource for the report.  After doing this, the preview no longer worked.
    Next, I added a page to the website and dragged a Crystal Report Viewer Control onto it.  In the code behind the page I wrote:
    Option Strict On
    Imports System.Data
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Partial Class Reports
         Inherits System.Web.UI.Page
         Private objOpenFilesreport As OpenFilesReport
         Private rptOpenFiles As ReportDocument
         Private strLastErrorMessage As String = Nothing
         Private errLastException As Exception = Nothing
         Dim strFileKey As String
         Dim strJurisdictionCode As String
         Dim strStaffId As String
         Dim strReportId As String
         Private Sub ConfigureCrystalReports()
              Dim reportPath As String = Server.MapPath("OpenFiles.rpt")
              Dim rptopenfiles As New ReportDocument
              rptOpenFiles.Load(reportPath)  <== I checked this during execution and the value correctly points to the OpenFiles.rpt file in the Reports     folder of my project
              Dim ConnectionInfo As ConnectionInfo = New ConnectionInfo()
              ConnectionInfo.DatabaseName = my database
              ConnectionInfo.UserID = login id of user
              ConnectionInfo.Password = user's password
              SetDBLogonForReport(ConnectionInfo, rptopenfiles)
              CrystalReportViewer1.ReportSource = rptopenfiles
         End Sub
         Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
             ConfigureCrystalReports()
         End Sub
         Private Sub SetDBLogonForReport(ByVal ConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
              Dim myTables As Tables = myReportDocument.Database.Tables
              For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
                   Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
                   myTableLogonInfo.ConnectionInfo = ConnectionInfo
                   myTable.ApplyLogOnInfo(myTableLogonInfo)
              Next
         End Sub
    End Class
    I added a hyperlink to one of the existing pages on the website to navigate to this page with the report viewer on it.  When I run the website in Visual Studio and click on the hyperlink I get the following:
    Server Error in '/MyTest' Application.
    The system cannot find the file specified.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Runtime.InteropServices.COMException: The system cannot find the file specified.Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace:
    &#91;COMException (0x80004005): The system cannot find the file specified.
    &#93;
       CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) +0
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options) +126
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +442
    &#91;Exception: Load report failed.&#93;
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +513
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob) +1378
       CrystalDecisions.CrystalReports.Engine.ReportDocument.EnsureLoadReport() +149
       CrystalDecisions.CrystalReports.Engine.ReportDocument.get_DataDefinition() +85
       CrystalDecisions.CrystalReports.Engine.ReportDocument.get_ParameterFields() +158
       CrystalDecisions.Web.CrystalReportSource.BindControlParameter(Parameter parameter) +130
       CrystalDecisions.Web.CrystalReportSource.DataBindParameters() +191
       CrystalDecisions.Web.CrystalReportSource.EnsureParameters(Boolean forceDataBind) +90
       CrystalDecisions.Web.CrystalReportSource.LoadCompleteEventHandler(Object sender, EventArgs e) +47
       System.Web.UI.Page.OnLoadComplete(EventArgs e) +96
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +4086
    Version Information: Microsoft .NET Framework Version:2.0.50727.832; ASP.NET Version:2.0.50727.832 
    Any ideas, anyone?
    Also, assuming I can get past this error, I will need to figure out how to fill the tables in the .xsd dataset file.  I have written a class for the dataset that includes functions that populate the tables in the dataset from the database by executing SQL queries.  But how do I call these functions at the time the report is run?
    This is my first Crystal report written in .NET and I've been struggling with it for days now.  Any help would be most appreciated!
    Thanks very much!
    Chris Severin

    hello, the error message is obviously coming from one of the installed mcafee extensions. please directly contact mcafee technical support - they can likely give you more detailed guidance and are the only ones who can fix bugs or make necessary adjustments in the addon.

  • Error message when starting: McShield.dll: the system cannot find the file specified - what do I do to solve this?

    When I start Firefox, the following message appears before the home page opens:
    "COMMONSHELL: McShield.dll
    The specified resource language ID cannot be found in the image file.
    McShield.dll: The system cannot find the file specified."
    I click OK, Firefox opens normally and everything seems to operate as expected, no further problems.

    hello, the error message is obviously coming from one of the installed mcafee extensions. please directly contact mcafee technical support - they can likely give you more detailed guidance and are the only ones who can fix bugs or make necessary adjustments in the addon.

  • Problem with Search / Find in Files ... in Version 10.1.3.1.0?

    When i use the function Search / Find in Files ... about the Active Application the IDE will be frozen and the JDeveloper hangs and must be killed. Is this a bug or is this only my problem?

    I had a similar problem a while ago.
    It would hang on 'indexing...'
    I think the problem was that i had a package that was called exactly the same as my project.
    For example:
    Projectname: util
    Package: com.example.util
    The problem disappeared when i renamed the project.
    I never came around checking if that was the real problem tough, so i could be completly wrong.
    Regards

  • CS5 Point to file bug

    I just upgraded to CS5 and noticed that when I use the "point to file" thingy to create a link, it starts to follow my mouse then veers off in the opposite direction ! I can't get it to go near the right side of my monitor. I can make it work if I target it anywhere to the left of the monitor or even on my second monitor, located to the left. I just can't get it to go to the right side of my nice new 23"LCD!
    Anybody else see this?

    > I appreciate the suggestion that we get back on track.
    Thanks, that was actually my initial suggestion to RainyDayMagazine
    > Everyone having this problem is on a Mac, right? Are there any Windows users participating in this forum?
    I haven't been able to find anyone having this issue on Windows yet.
    > We're all running Mac OS 10.5+?
    RainyDayMagazine is incorrect and using only his personal anecdotal experience.  For instance, I've noticed the bug in both 10.6.6 and 10.6.7 so far as well.
    > We're all using DW CS4, CS5, or CS5.5?
    I've experienced this with CS5 and now CS5.5 after upgrading.  And now finding new problems with workspaces in CS5.5 after the upgrade that might be related, but I've started a new thread for that and will only bring that issue over here if a fix there resolves the issues here.
    > This only pertains to multi-monitor setups, right? Single monitors are not a problem, are they?
    This appears to be the case for everyone including me.
    > With two monitors, can you use point-to-file at all?
    Yes, but you are forced to move windows within the limited range.
    In my case, I have an external monitor (on the left) with a resolution of 1280x1024.  I'm able to drag the point-to-file arrow exactly 1280 pixels from the left edge of my MacBook Pro i7 display before it disappears which isn't far enough to reach the Files Window because the resolution of my MacBook Pro is 1920x1200.  I am then forced to put the File Window on the left external monitor and the arrow reaches there fine anywhere in that display.
    > Any brainstorms?
    If you haven't already contacted Adobe, please do so.  The more of us that bring this to their attention, the better.  As I mentioned in my previous post, I'm still analyzing where this errant data is stored.
    I'm probably going to boot into a clone when I have time and completely delete files from various places and see what happens.  I'm also curious to see what happens with a clean install of the Mac OS and running Lion which I will be trying in the coming weeks on an external testing hard drive I'll boot to.
    The main thing is to find what file/code/plist/etc. Dreamweaver utilizes when it defines the range for the point-to-file arrow.  If we can find that and edit it (or if it can be removed and refreshed) Then the problem will probably be fixed unless there's also an Apple bug contributing which I'm still investigating as well.
    But once again, we may all very well be shooting in the dark until Adobe comes in and helps, so contacting them should also be a priority.
    RainyDayMagazine suggested "setting the monitors to mirror, moving the menu bar, etc.", but AFAIK that hasn't worked for anyone else and I tried it and it didn't work.  I analyzed changes to the system/dreamweaver with fseventer while doing this, but it didn't render any clues as to why it didn't work at all.

  • Itunes don't find some files after close the application

    I have a local network. I have decided to share my music from a share server samba on Linux to my laptop on XP , my macbook , and my Imac.
    I have made this solution because have many problems to share the music on my Imac between users.
    The libary sharing music is not synchronise during the time. I explain : If i import a cd to Itunes on My imac, my wife don't have the music. ( security problems I thinck). ITunes is on Public and the acess is granted for users.
    I was admin Unix system
    I don' t wanted to copy the files on the Itmusic on each users.
    The other solution is the linux server samba sharing a directory Itunes_share. I have made a directory Itunes Music and put all the files mp3 and podcast.
    the share is good by selinux and the group is Itunes
    After that Itunes has recreated the share database. The system is right.
    But tomorrow, I has lost the songs on the interface. When I click on the song , I have a !
    The problem is the same on Windows XP
    After the migration for Iphone 2.0, song with ! apparears.
    Just yesterday, i have access Itunes with the user, and i can hear song with ! . The files have on disk but ITunes don't find after closing the aplication.
    Also , I has note that the lenght of the string is cast . And you have 2 files for the same files.
    Just the name is different. ie : the lenght is 14 caracters the other is 16 caracteres
    The problem is current
    I thinck that is a bug of Itunes

    I have unterstand the problems.
    You have two reason that itunes don't find the files.
    1) if the share is forward networking, the lost of share can be a good reason
    Itunes changed preference to the default localisation of your files in preference
    2) share the same files by two different libary of two computer or user differents
    I think that Itunes made a lock in the syntaxe

  • Find in Files and Active Project

    When I open a file from the window called "display search results" the file is not in the "current" project.
    Several functions don't work with this file:
    - Code Insight
    - Go to declaration
    - Make ("the file is not part of the active project"
    I think Find in Files should be smarter (especially when the search path is the "active project")

    I will log this as a bug against JDeveloper.

  • Disk is full, but I can't find the file(s) that fill it.

    When I got to my computer this morning it's root partition was full.  That partition is over 400G and when I left the computer last night it was nowhere even close to full.
    I spent a moment trying to find the files that filled the disk.  I tried `du / | sort -n`  This tells me the space is taken up by /home/dave.  However, there are no files in that directory that would account for all that space.  (du reports the directory is ~400G, but reports no files that would account for the space)
    Then I rebooted the machine.  Then suddenly my space was available again.
    What's going on?  I'm puzzled and confused.
    I should mention that the root partition is EXT3 on top of LVM on top of RAID1, as described http://wiki.archlinux.org/index.php/Ins … AID_or_LVM.  Is there a bug in this?
    -Dave
    [dave@starbuck ~]$ uname -a
    Linux starbuck 2.6.26-ARCH #1 SMP PREEMPT Tue Sep 9 09:56:28 UTC 2008 x86_64 AMD Athlon(tm) 64 Processor 3000+ AuthenticAMD GNU/Linux
    [dave@starbuck ~]$ df -h
    Filesystem Size Used Avail Use% Mounted on
    /dev/mapper/grande-root
    422G 12G 390G 3% /
    none 1006M 0 1006M 0% /dev/shm
    /dev/mapper/venti-media
    447G 22G 403G 6% /mnt/media
    /dev/md1 92M 17M 70M 20% /boot
    (the `df -h` above is after reboot.  Sorry I don't have a copy of the before reboot, but it showed 400G used on /)

    I can't recall the exact details, but I remember some disk usage going crazy on one of my own machines. 'du' was reporting more than 'ncdu' (an excellent package in the AUR that combines du and ncurses) or whatever similar tool I was using to see if du's craziness was correct (which it wasn't, of course).
    I don't exactly remember what I did to fix it, but I think I rebooted and everything fixed itself.
    I'm really venturing out here since my memory of this is so vague, but I might have had a (supposedly) full partition too, but I can't remember that part all that much.
    And I run JFS without anything fancy (like RAID or LVM), so there are filesystem-independent issuez somewhere...
    -dav7
    Last edited by dav7 (2008-10-08 18:13:39)

  • When I download a page a message says cannot find zip file directory

    When I try to download a page a message appears after the download time saying in part that "cannot find zip file directory". This message appears on all downloads I attemp.

    Here are typical layouts for the iTunes folders:
    If you have upgraded from version 8 (or earlier) to iTunes 9 (or later) at some point, then your media folder (everything inside the red outline) may still be called iTunes Music instead of iTunes Media. The extra Music folder inside the media folder is used if you have allowed iTunes to Upgrade to iTunes Media Organization (iTunes 9) or used File > Library > Organize Library > Reorganize files in the folder "<Media Folder>" (iTunes 10). Depending on your choices for Keep iTunes Media folder organized and Copy files to iTunes Media folder when adding to library plus a little bug in which one build changed the name of the file storing the choice of layout it is quite easy for some of your files to be organized according to one layout and some the other.
    It is possible that in the upgrade to Lion iTunes has been installed with the current default options while your library is based on an older structure. Use Get Info. on a missing track, click cancel when asked to locate it and look at the path given on the summary tab. Now look for the actual file with Finder. Post both paths back here and we can try to make sense of the problem.
    tt2

  • Find a file with AppleScript

    Hi everyone !
    Is there a way to find a file using AppleScript ?
    The "find" command in the finder seems not working or I have a problem with the syntax.
    In an other hand, I dont find any way to script Spotlight...
    I hope I am wrong
    Any idea will be welcome
    JPaul

    Hi Jeanpauld,
    It works fine.
    As the final use is in a FileMaker pro data base, I
    prefer this solution.
    Glad to hear the script worked for your particular situation.
    In which dictionnary can I find SpotlightSearch ?
    "SpotlightSearch" is just what I named the subroutine of the script. You could name it whatever you like but I figured that would be a good name for it since it uses the spotlight technology to perform the search.
    As Joseph Briggs pointed out the best way to get information about the mdfind command used in the do shell script portion of the SpotlightSearch subroutine is to use the Terminal application. Launch the Terminal and type man mdfind.
    If you have any further questions regarding this command please feel free to ask and I would be glad to try and help you through it. There's quite a bit that can be done using the mdfind command!
    Thanks a lot for your help !
    Anytime Jeanpauld.
    Sorry about not replying to your response sooner but the new discussion forum format is refusing to email me letting me know when my subscriptions get updated. I used to rely on that feature and will have to keep my own eye on my subscriptions for a bit while Apple works out the bugs in the new forums.
    Take care Jeanpauld...

  • Help:Can not find the file in jar!

    Hello everyone:
    I build a project using Netbeans 5.0 and make a jar file with it...
    The code in the project as follows will throw an exception described that it can not find the file named datasource-config.xml
    String dataFilePath = getClass().getResource(dataFile).getPath();
    //System.out.println("filepath:"+dataFilePath);
    InputStream input = new FileInputStream(dataFilePath);
    when I run the project with the main() function as an entry it works perfectly and output:
    filepath:/C:/projects/java_project/search/build/classes/com/cn/wxjt/lucene/config/datasource-config.xml
    But when I compressed the project with jar and run it , it will show:
    filepath:file:/C:/projects/java_project/search/dist/search.jar!/com/cn/wxjt/lucene/config/datasource-config.xml
    there is a (!) between search.jar and /com/cn/wxjt...
    I dont know why I generate a ! symbol in the file path... Is it cause the exception->
    java.io.FileNotFoundException: file:\C:\projects\java_project\search\dist\search.jar!\com\cn\wxjt\lucene\config\datasource-config.xml
    If you have any idea, plz tell me.
    Thank you and best wishes to you !
    :)

    If the file you want to read is in your jar file, use
    getClass ().getResourceAsStream
    (relative_path_file_name)Hope that help,
    Jackhey jack i want to open the file as new File
    i m using this.getClass().getResource("resource/backend.xml");
    the resource is the directory inside the jar file.
    when i prints the url it shows:
    the jar file is in the WORK directory
    URL : jar:file:/home/neeraj/WORK/show.jar!/resource/backend.xml
    now when i creates new File using the url.getFile() method the file does not exist.
    although the same programs runs well when i uses the InputStream
    so plz tell me cant I create a new File from the above method????
    thanks in advance
    with regards
    neeraj

  • Move all my music to another folder but Itunes can't find the files!

    I have all my music on my desktop in small folders for each artist.
    But now i don't have room anymore, because i have to much music.
    So i want to move it all in to a folder called "Music". But when i do that
    Itunes can't find the files, and i have to search for each file, to find the new location instead of the desktop. How do i move my music more easily? So i don't have to synchronize it all in again, with the right album covers and that..
    Please, need some help here!

    You need to open your preferences file in iTunes and click on advance then select the location of where you put the folder.  http://support.apple.com/kb/HT4527

  • I have updated my iphone software from ios4.1 to 5.0.1(9A405) through itunes and i want to find the file which i download but i can`t find it in itunes where can i find it

    I have updated my iphone softwarefrom ios4.1 to 5.0.1(9A405) and i want to jailbreak my iphone to download cydiaafter i do that i download programe named sn0wbreeze2.8b11 but when i startedto jailbrake the programe ask me to drag&drop or browse for ipsw while ialready downloaded but through itunes i try to search on itunes store to get itand drag on this programe but i didn`t found it so, Kindly please tell me howcan i find this file to continue jailbreak my iphone if u have an answer to myproblem please e-mail me at *****[email protected]  or just reply in zis discussion

    See this
    If you can't update or restore your iOS device

Maybe you are looking for

  • Can't put music on iPod after sync

    When i pressed the sync button, all my music files were removed from my iPod. Now i can't put any songs onto my iPod. What should I do? plz HELP!!

  • Integrated Planning Documentation

    Hi All, Can anybody please tell me how to do documentation in BI Integrated Planning. Actually in BPS we have an option for documentation BPS0- Tools- Object Overview. For IP we can search tables RSPL* in SE11. Other than this any method is there for

  • How should I use the 'COPY' & 'NAME_IN' command in Report Builder

    when I use 'NAME_IN' in report builder It always shows 'identifier 'NAME_IN' must be declared'!! Help me how to resolve or give me another command to get the same result!!!!!!!!! Thank you very much!!

  • Can I control what an uploaded file plays on?

    When I upload an MPEG-4 Quicktime movie from my Mac, and then download it from a PC, the PC defaults to RealTime, tries to play it on that, and then determines that it can't. Is there a way for me to export and upload a file that will automatically p

  • Need help for a new layers to pdf script

    Hello. Can anyone help me to make a script for layers to pdf? ADHESIVE, WHITE, Layer-8, Layer-7, Layer-6, Layer-5, Layer-4, Layer-3, Layer-2 and Layer-1 needs to be on seperate pages. Jobbnr and Passmerk / Registrationm. (incl. sub-layers) needs to b