Verity search not finding all matches

I am indexing a query of 1000 records. I have verified that
the word "training" appears in 7 records:
Record ID
52
135
246
535
642
849
926
When I search for "training" only records 52, 135, and 246
are returned.
Here is the kicker: Whe I sort the query in descending order
and then search for "training" records 962 and 849 are returned.
Records 535 and 642 are not returned in either case.
I have repaired and optimized the index in each case to make
sure but it appears that either indexing stops after a few records
or verity only returns a top few.
How does verity work?

My New Code:
<cfindex action="PURGE" collection="#dbprefix#data_index"
status="">
<cfindex action="UPDATE" collection="#dbprefix#data_index"
key="SP_SESSION"
type="CUSTOM"
title="SP_SESSION_TITLE"
query="data"
body="SP_SESSION,SP_TRACK,SP_SESSION_TITLE,SP_SESSION_DESCRIPTION,FULL_NAME,TITLE,COMPANY ,SP_P_P_TITLE">
Still no luck.
Want to see for yourself?
Index the site here:
http://www.aspanet.org/2007conference/indexpages.cfm
Note: I am running two indexes on this page, they are wholly
independent of each other. the one with the problem is "data"
Also note that the numbers and data I provided at the
beginning where examples to simplify my question.
Also, use the browser search on the index page to look for
NC07PROG/NC07_CM31 you will find it near the top. Now search for
NC07PROG/NC07_SS05 you will find it near the bottom.
Now go to the actual search here:
http://www.aspanet.org/2007conference/page.cfm?name=_Search
Search for NC07PROG/NC07_CM31 you will find it
Now search for NC07PROG/NC07_SS05 you will not find it
Now search for the word "training". One of the results will
be record NC07PROG/NC07_CM31 but not NC07PROG/NC07_SS05

Similar Messages

  • File search does not find all matches.

    If I ask for a file whose name begins with "WXYZ" on <Boot Volume> or "This Mac", matching files in subfolders of /Library do not appear. The only files that appear are in my user directory or on external disks ("This Mac" only, of course.) If, on the other hand, I chose to search /Library, the files are found.
    How do I REALLY search for ALL files on a volume or "This Mac" whose name begins with "WXYZ"?

    I had exactly the same problem. To do with how spotlight references the filesysytem
    http://discussions.apple.com/thread.jspa?threadID=1776734&tstart=0

  • Search not finding certain matches

    We have some document control documents that are not showing up when searched for based on certain keywords but are for others....
    The document title (as well as name) contain "Program Code1 Code2 Desc".  So for example it might say "11123# ABC U1234 red thing".
    The person doing the searching usually wants to get all of the files that relate to the codes.  So they would search for "ABC U1234".  The library has 6 documents that should match, but returns only 2 (Advanced search returns the same
    2 results).  However, if for example you search for "ABC U1234 red", the document that didn't show up in the first search now shows up.  So I know the crawler has at least got the documents based on that (the document also have not been
    changed in several months, so it isn't like the title just changed and the crawler just hasn't hit it yet). 
    These are Excel documents

    Hi spi_shane,
    I understand the library has more than 2 documents "titile" and "name" column containing string "11123# ABC U1234 red thing", but search only return 2 of them when search "ABC U1234", but the others
    will return whe search "ABC U1234 red", these documents have been crawled and documents change nothing in several months.
    For toubleshooting the issue, we can try the following.
    1. Please make a copy of that Excel file with name "11123# ABC U1234 red thing - copy" , and create another new Excel file with name "11123# ABC U1234 red thing - new" from local machine Excel application, then
    upload to the library and start an incremental crawl, see if the they could be searched out, then see if the orginal files have something corrupt.
    2. Go to Central Administration site ->Search service applicaiton, crawl log page, find the crawled docuemnt item and selete "Recrawl this item in the next crawl", then start an incremental crawl and test again.
    Thanks
    Daniel Yang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Mail subject search is not finding All copies why?

    mail 6.3 using a subject search (in the small spotlght)  - is not finding All copies in my folders and subfolders why? I have done indexing for all mail folders and that did not correct it.

    Are you really still running OS X version 10.7.4 as your post indicates above?  I don't believe Mail 6.3 would run correctly on Lion.
    If not, and you're really running Mountain Lion, then I suggest Mailbox > Rebuild on the box(es) / folder(s) not working correctly.

  • Error: Could not find a match for... ?

    Hi,
    I am trying to compile some code using Studio 10/11 which appears to compile cleanly using a bunch of different C++ compilers (xlC, aCC, VC, g++) but is failing using the C++ compiler in both Studio 10 and Studio 11 with:
    "test.cpp", line 18: Error: Could not find a match for MKGeomT::getDistanceSquared<MKGeomT::_DIM, MKGeomT::_TYPE>(const MKGeomT::Segment<MKT::Dim2, MKT::Double>&, const MKGeomT::Point<MKT::Dim2, MKT::Double>&, MKGeomT::Point<MKT::Dim2, MKT::Double>*, double*).
    "test.cpp", line 23: Error: Could not find a match for MKGeomT::getDistanceSquared<MKGeomT::_DIM, MKGeomT::_TYPE>(const MKGeomT::Segment<MKT::Dim3, MKT::Double>&, const MKGeomT::Point<MKT::Dim3, MKT::Double>&, MKGeomT::Point<MKT::Dim3, MKT::Double>*, double*).
    Any ideas on how to get this to compile would be appreciated.
    test.cpp:
    /opt/SUNWspro/bin/CC -library=stlport4 -c test.cpp
    #include "all.h"
    namespace MKGeomT
    template < class DIM, class TYPE >
    double getDistanceSquared(Segment < DIM, TYPE > const &segment,
    Point < DIM, TYPE > const &querypt,
    Point < DIM, TYPE > *closestpoint,
    double *param)
    { return 0.0; }
    template double getDistanceSquared < MKT::Dim2 > (Segment2 const &segment,
    Point2 const &querypt,
    Point2 *closestpoint,
    double *param);
    template double getDistanceSquared < MKT::Dim3 > (Segment3 const &segment,
    Point3 const &querypt,
    Point3 *closestpoint,
    double *param);
    all.h:
    // a.h
    namespace MKGeomT
    template < class DIM, class TYPE > class Point;
    template < class DIM, class TYPE > class Segment;
    template < class DIM, class TYPE >
    double getDistanceSquared(Segment < DIM, TYPE > const &segment,
    Point < DIM, TYPE > const &point,
    Point < DIM, TYPE > closestpoint /= 0*/,
    double *param = 0);
    template < class DIM, class TYPE >
    inline double getDistance(Segment < DIM, TYPE > const &segment,
    Point < DIM, TYPE > const &point,
    Point < DIM, TYPE > *closestpoint = 0)
    return 0.0;
    // b.h
    namespace MKT
    class Dim2 { public: enum { NUM_DIM = 2 }; };
    class Dim3 { public: enum { NUM_DIM = 3 }; };
    class Float { public: typedef float  Stor_t; typedef double Calc_t; };
    class Double { public: typedef double Stor_t; typedef double Calc_t; };
    } // end of namespace MKT
    // c.h
    using MKT::Dim2;
    using MKT::Dim3;
    using MKT::Double;
    namespace MKGeomT
    template < class DIM, class TYPE >
    class PointBase
    template < class DIM, class TYPE > class Point;
    #if 1
    template < class _TYPE >
    class Point < Dim2, TYPE > : public PointBase < Dim2, TYPE >
    template < class _TYPE >
    class Point < Dim3, TYPE > : public PointBase < Dim3, TYPE >
    #endif
    typedef Point < Dim2, Double > Point2;
    typedef Point < Dim3, Double > Point3;
    } // end of namespace MKGeomT
    // d.h
    namespace MKGeomT
    /*! The Segment is a geometry class storing a segment in 3-D. Things
    like the segment vector and length are cached behind the
    scenes so subsequent retrieval is a no-op. */
    template < class DIM, class TYPE = MKT::Double >
    class Segment
    template < class DIM, class TYPE >
    double getDistanceSquared (Segment < DIM, TYPE > const &rkSeg0,
    Segment < DIM, TYPE > const &rkSeg1,
    double* pfSegP0 = 0,
    double* pfSegP1 = 0);
    template < class DIM, class TYPE >
    double getDistanceSquared2(Segment < DIM, TYPE > const &rkSeg0,
    Segment < DIM, TYPE > const &rkSeg1,
    double* pfSegP0 = 0,
    double* pfSegP1 = 0);
    typedef Segment < MKT::Dim2, MKT::Double > Segment2;
    typedef Segment < MKT::Dim3, MKT::Double > Segment3;
    thanks,
    k.m

    Never mind, I see that you intended to include b.h, c.h, and d.h in all.h.
    Many compilers do not look at template code until the code is instantiated. This code consists only of declarations, with little that can be instantiated. It's possible that other compilers would also complain about this code if they got to the point of processing all the template declarations.
    Can you add some instantiations along with template definitions and a main function so that the code can be compiled and linked?

  • "Could not find a match" error when passing parameter prefixed with "std::"

    We're moving from Solaris 8 to Solaris 10, and I'm compiling our C/C++ applications using the Sun Studio 8 C++ compiler to verify that they'll still run correctly under Solaris 10.
    All is well except for an error I'm getting on my Solaris 10 system but not on my Solaris 8 system.
    Specifically, this line of code compiles correctly on both systems:
        if ( std::find_if(ident.begin(), ident.end(), is_not_alnum) != ident.end() )
            throw invalid_ident(caption, ident, code);but this line produces an error on Solaris 10 (but not on a Solaris 8 server):
        if ( std::find_if(ident.begin(), ident.end(), std::islower) != ident.end() )
            throw invalid_ident(caption, ident, code);The error returned is:
    "auth_validate.C", line 140: Error: Could not find a match for std::find_if<std::InputIterator,
    std::Predicate>(const char*, const char*, extern "C" int(int)).Clearly the "std::" prefix is involved... but why would this code compile successfully under Solaris 8 but fail under Solaris 10?
    I've eliminated the usual suspects: the compiler is the same (including the include files) on both servers; there are no differences in the makefiles; there are no differences in the source code; all the referenced include directories exist on the Solaris 10 server.
    At this point I'm stumped. My guess is that there's some environmental variable somewhere in Solaris 10 that is telling the Sun Studio 8 compiler to behave in a particular way (which Solaris 8 isn't telling the compiler), but I can't guess where such a thing might be occurring or what it might look like.
    I've tried changing the source code to simply delete the "std::" prefix, and that code then compiles correctly on both my Solaris 8 and Solaris 10 servers. However, I'd very much prefer not to have to change any source code -- if this is an environmental issue with Solaris 10 affecting how the Sun Studio 8 C++ compiler behaves, I'd like to know about that.
    If anyone can shed some light on this problem, or even propose additional tests I might try, I'd appreciate it!

    clamage45, thanks very much for the response.
    I'm looking into putting together a small example app. Meanwhile, I took your suggestion to check the patch levels of the two compiler instances and lo! there is a discrepancy.
    The compiler installed on our Solaris 8 server reports itself from a CC -V command as "CC: Sun C++ 5.5 Patch 113817-19 2006/10/13", while the version on the Solaris 10 server reports as "CC: Sun C++ 5.5 2003/03/12". So although my eyeball comparison of the compiler's include files and libraries (including file sizes and timestamps) showed no differences, that was just a spot check; it wasn't the more "official" check that you helpfully suggested.
    I've asked our sysadmin to look into this. No guarantees, of course, but I would not be surprised if patching the compiler on our Solaris 10 system resolved the problem. (Assuming we can find a version of the most recent patch for the Sun Studio 8 C++ compiler that's valid for Solaris 10.)
    Regarding Sun Studio 8, we're definitely aware that it's reached its expiration date. We already have plans to transition to a more up-to-date version (probably Sun Studio 12) at a later date -- all I'm doing currently is testing to verify that the current application compiles and runs properly on Solaris 10. If possible, I'd like to get that working independently of any potential code changes driven by a significant compiler version upgrade.
    Thanks again, and I'll add a new comment with additional information if our patching doesn't help.

  • Link Checker not finding all errors

    Hi. I am running the link checker, but its not
    finding all my errors - does anyone know why? -- for example -
    links like "/products/index.html should be "../products/index.html
    -- but link checker is not flagging this as wrong.
    Also the opposite - if I have this "../../products/index.html
    - and it should be : "../products/index.html - it doesnt know its
    wrong.
    Help - I really wanted to implement my new site tomorrow -
    but I cant trust the results I am seeing right now.
    Shriley

    >
    Hi. I am running the link checker, but its not
    finding all my
    > errors -
    > does anyone know why? -- for example - links like
    "/products/index.html
    > should
    > be "../products/index.html -- but link checker is not
    flagging this as
    > wrong.
    Either link will work fine. Both point to EXACTLY THE SAME
    PLACE, assuming
    your file doing the linking is one folder level below the
    root. The former
    link is called a root relative link since it describes the
    path to the
    linked file from the root of the site no matter where the
    linking page is.
    The latter is called a document relative link because it
    describes the path
    to the linked file from the location of the current page.
    Neither will be
    flagged by the link checker, since both could be right.
    > Also the opposite - if I have this
    "../../products/index.html - and it
    > should be : "../products/index.html - it doesnt know its
    wrong.
    Is this a real or a made up example? If you have the former,
    and it should
    be the latter, then your site is not properly defined.
    > Help - I really wanted to implement my new site tomorrow
    - but I cant
    > trust
    > the results I am seeing right now.
    It's a cockpit error, I believe. To read more about
    root/document relative
    links, go here -
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_13129&sliceId=2
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15546&sliceId=2
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "sdunham" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    Hi. I am running the link checker, but its not
    finding all my
    > errors -
    > does anyone know why? -- for example - links like
    "/products/index.html
    > should
    > be "../products/index.html -- but link checker is not
    flagging this as
    > wrong.
    >
    > Also the opposite - if I have this
    "../../products/index.html - and it
    > should be : "../products/index.html - it doesnt know its
    wrong.
    >
    > Help - I really wanted to implement my new site tomorrow
    - but I cant
    > trust
    > the results I am seeing right now.
    >
    > Shriley
    >

  • Sun C++ 5.13 SunOS_sparc Beta2 2014/06/17: Error: Could not find a match for std::_Tuple_impl 0, unsigned&& ::_Tuple_impl(std::tuple unsigned&& , unsigned) needed in std::tuple unsigned&& ::tuple unsigned, void (unsigned&&).

    I think I downloaded the latest Solaris Studio version.  When I compile my code, I got the following error:
    bash-3.00$ gmake -f Makefile.sun
    CC -c -o metadata.o metadata.cpp -I. -I.. -g -O0 -std=c++11 -I/export/home/oracle/zhifan/boost_1_55_0 -I/export/home/oracle/zhifan/instantclient_11_2/sdk/include -V
    CC: Sun C++ 5.13 SunOS_sparc Beta2 2014/06/17
    ccfe: Sun C++ 5.13 SunOS_sparc Beta2 2014/06/17
    "metadata.cpp", line 20: Warning: db hides databus::MetadataManager::db.
    "metadata.cpp", line 26: Warning: db hides databus::MetadataManager::db.
    Error: Could not find a match for std::_Tuple_impl<0, unsigned&&>::_Tuple_impl(std::tuple<unsigned&&>, unsigned) needed in std::tuple<unsigned&&>::tuple<unsigned, void>(unsigned&&).
    "/export/home/oracle/zhifan/SolarisStudio12.4-beta_jul14-solaris-sparc/lib/compilers/CC-gcc/include/c++/4.8.2/tuple", line 868:     Where: While instantiating "std::tuple<unsigned&&>::tuple<unsigned, void>(unsigned&&)".
    "/export/home/oracle/zhifan/SolarisStudio12.4-beta_jul14-solaris-sparc/lib/compilers/CC-gcc/include/c++/4.8.2/tuple", line 868:     Where: Instantiated from std::forward_as_tuple<unsigned>(unsigned&&).
    "/export/home/oracle/zhifan/SolarisStudio12.4-beta_jul14-solaris-sparc/lib/compilers/CC-gcc/include/c++/4.8.2/bits/stl_map.h", line 485:     Where: Instantiated from non-template code.
    1 Error(s) and 2 Warning(s) detected.
    gmake: *** [metadata.o] Error 2
    with the same code, It can be compiled with g++ on Linux platform.
    1 Is the issue same as 12.4 Beta, Error: Could not find a match for std::_Tuple_impl<0, std::string &&>::_Tuple_impl(std::tuple<std::string &&> ?
    2 Do we have any workaround for this issue?
    3 When will the final 12.4 release  be available?

    I can't say for sure whether your problem is fixed in the final release without a test case, but I'd say the chances are very good.
    The final release will be announced soon. Watch this space, or the Oracle Solaris Studio page for an announcement.

  • 12.4 Beta, Error: Could not find a match for std::_Tuple_impl 0, std::string && ::_Tuple_impl(std::tuple std::string &&

    Hi,
    would you guys say code that compiles fine without -std=c++11 should also compile *with* -std=c++11?
    raider@sol112_x86:/tmp $ CC -V
    CC: Sun C++ 5.13 SunOS_i386 Beta2 2014/06/17
    raider@sol112_x86:/tmp $ CC buggy.cc  
    raider@sol112_x86:/tmp $ CC -std=c++11 buggy.cc         
    Error: Could not find a match for std::_Tuple_impl<0, std::string &&>::_Tuple_impl(std::tuple<std::string &&>, std::string ) needed in std::tuple<std::string &&>::tuple<std::string, void>(std::string &&).
    "/opt/SolarisStudio12.4-beta_jul14-solaris-x86/lib/compilers/CC-gcc/include/c++/4.8.2/tuple", line 868:     Where: While instantiating "std::tuple<std::string &&>::tuple<std::string, void>(std::string &&)".
    "/opt/SolarisStudio12.4-beta_jul14-solaris-x86/lib/compilers/CC-gcc/include/c++/4.8.2/tuple", line 868:     Where: Instantiated from std::forward_as_tuple<std::string>(std::string &&).
    "/opt/SolarisStudio12.4-beta_jul14-solaris-x86/lib/compilers/CC-gcc/include/c++/4.8.2/bits/stl_map.h", line 485:     Where: Instantiated from non-template code.
    1 Error(s) detected.
    raider@sol112_x86:/tmp $ cat buggy.cc
    #include <map>
    #include <string>
    typedef std::map<std::string, std::string> StrStrMap;
    int main(void)
        StrStrMap dict;
        dict["bug"] = "feature";
        return 0;

    C++11 is approximately a superset of C++03. If you write in the common subset, the code will compile in any mode. For example, a basic hello-world program
    #include <iostream>
    int main() { std::cout << "Hello, world!\n"; }
    will compile and run as C++98/03, as C++11, as C++14, and I'm sure will also work with the next standard, planned for 2017.
    But if you use syntax or library types and functions that are new in C++11, the code will not compile as C++03.
    In my previous post, I might have sounded too negative about compiling C++03 code in C++11 mode. If you have a C++03 program that is intended to be portable, and that works with different compilers on different platforms, chances are good that it will continue to work in C++11. The chances are very good that only minor modifications will be needed.

  • Using iPad air, iPod, iCLoud and WinPro 7 - I am not finding all my tunes and movies among all these devices.

    When I orignally installed iTunes current update, and tried to move about the devices iTunes would crash. I uninstalled it, then reinstalled it. It seems to be stable, however as  before I am not finding all of my TUnes and Movies on all my devices.
    Any one?
    Thanks-

    Hey thomnj,
    From what I understand, it sounds like after uninstalling and reinstalling your iTunes as a troubleshooting step, you're now missing some of your media? I would troubleshoot the issue with the steps in here:
    iTunes: Finding lost media and downloads
    http://support.apple.com/kb/TS1408
    Welcome to Apple Support Communities!
    Best,
    Delgadoh

  • Hi there, I have much files saved on pages ( ios ipad) , I just open it today and did not find .all the files !!!! Just 4!!! Taken in consider that I did not delete or making any wrong action. How I can return the lost files!!!! Help please

    Hi there, I have much files saved on pages ( ios ipad) , I just open it today and did not find .all the files !!!! Just 4!!! Taken in consider that I did not delete or making any wrong action. How I can return the lost files!!!! Help please
    its very important files!

    tis true
    I know, I always do that but I was in a rush to get somewhere and I was relying on my thousand dollar Mac to do some kind of recovery or something. I know Microsoft always keeps temporary files (I think Mac does too, part of me asking here in this forum was for someone to tell me where I can find those files) and when you go to open Office Works then it gives you the option of opening the last recent documents, saved or not saved.
    I usually copy paste into my emial just in case something goes wrong with the created document but I just didn't have the time to login and do all that My loss, you live and you learn, BUT still if ANYONE got any info on this, PLEASE DO CHIME IN *keeping the hope alive*

  • I have saved a large number of cd on an extermal drive via my laptop. I have now moved my external drive to my desk to but I tunes does not find all the CD i have saved on the external drive

    I have saved a large number of cd on an external drive via my laptop. I have now moved my external drive to my desk to but I tunes does not find all the CD i have saved on the external drive

    Depending on which email client software you use
    the files should be in 'your home folder' library, esp.
    if you use Mail application.... ~/Library/Mail
    Since you don't specify what mail application,
    that would most be associated with the file.
    I notice there are some items to the right of your post
    where it says "more like this' so that may be worth a
    look to see if similar issues were answered. Also, the
    Help viewer in your system is a searchable database.
    Seems that google also brings up fair information, too.
    Do you have a complete bootable clone of your entire
    Mac system on an externally enclosed hard disk drive?
    Good luck & happy computing!

  • Edit find/change (not finding all instances)

    I am using Edit>Find/Change to change a brand name in a document — however, this feature is not finding ALL instances of the brand name. I am having to manually/visually edit through the entire doc. Suggestions?

    Hi,
    You could check whether "Case sensitive" is switched on in your find/change dialog. Also check that your find format options are cleared. Click the "More Options" button if the find format options are not showing in the dialog.
    Regards,
    Malcolm

  • Sharepoint Online: Find an Item box is not finding all items in a list based on keyword search

    I am using SharePoint Online.
    I have a standard SharePoint list with a "Name" field (single line of text) and a "Description" field (multiple lines of text).  The Find n Item search box is present as expected, and works very sporadically.  For example, I
    have an item with the word "white" in the Description field.  Searching for "white" doesn't find the item.  I have a number of items with the word "vending" in the Name field.  Searching for vending returns some
    of the items, but not all of them.  
    I have gone into the list settings (Advanced) and reindexed the list.
    Here are two screenshots that illustrate the issue.  The first is unfiltered. The second shows a filter on the word "vending".  Note that some are found and some are not.
    Filtered
    Any idea what's going on?  

    I am also experiencing an issue with the find. If not the same issue David is having, I suspect it is related, so I will describe it here.
    I created a list based on the Contacts content type and within a standard list view, entering values in the "Find an item" box will match content of some columns, but not others. The four columns that the find misses are Position(renamed from Job Title),
    Email Address, Mobile Phone, and Years Of Service (a Numeric column I added to the list). I too have re-indexed the list and retested after several hours.
    Full Name and Email Address are both native columns of the Contact content type and both are Single line of text. I am able to filter the list by finding partial matches on Full Name, but not Email Address.

  • Finder search not showing all files

    I'm using Finder to search for files on a server connected to my computer at work. The search results I am getting do not include all the files that meet my search criteria. For example, I am looking through photo files for any files with "34" in the name. Some files show up, but not all of them. See screenshot. I am searching in the "Branded Photoshoot" folder, and I am getting some results (Branded Photoshoot/Hilton Universal/IMG_1434), but another file that is in folder, though a different subfolder, (Branded Photoshoot/Architectural Center/IMG_1534) is NOT showing up. What is causing that subfolder and its files to not be included in the search results?

    You're searching for "1434" (not just 34) and getting only files with 1434 in it:

Maybe you are looking for

  • How can I detect a dialog and respond?

    I'm having trouble doing something that's probably not that hard. I'm trying to "Print to PDF" a bunch of old AppleWorks documents. When you open a document created in AppleWorks v6 it opens right up, but when you open a document created in AppleWork

  • Regarding database crashed

    Friends, I have googled a lot and searched a lot in internet regarding my problem. Hope here I get some clue to recover my database. I have one test database which I am using from few month. Unfortunately I have dumped the database contents on same H

  • GreaterThanOrEqualTo against a Date

    Can anyone give me direction on how to use a CriteriaBuilder to create a >= statement against a date, using the greaterThanOrEqualTo method. :mydate >= effDate Thanks, Jay

  • P&L in BW

    What infoproviders or from which info area can I design P&L and Balance sheet of a company in BW? Thanks

  • Granule Sizing

    Hi , How one would determine the size of the granules when migrating it from 32 Bit server to 64 bit server? Thanks and Regards L