LIKE and CONTAINS

I create index:
SQL> CREATE INDEX UM2_ATTRS_STR_I_ctx ON UM2_ENTRIES_ATTRS
(STRING_VALUE) INDEXTYPE IS CTXSYS.CONTEXT;
2
Index created.
I've got 2 query:
SQL> select count(e.id) from um2_entries e , um2_entries_attrs a where e.id = a.entry_id
and a.name = 'user.name'
and a.string_value like '%__%';
2 3
COUNT(E.ID)
1734
94 msec!!!!!!!!
SQL> select count(e.id) from um2_entries e , um2_entries_attrs a where e.id = a.entry_id
and a.name = 'user.name'
and contains(a.string_value, '%__%', 1) > 0;
2 3
COUNT(E.ID)
1734
7 sec!!!!!!!!!!!!!!
Why does one of them (with LIKE) goes much faster than the other?

FYI - you might want to check the documentation on when wildcards are needed for CONTAINS vs. LIKE. From your example I can't tell whether you are looking for a part of a term (where a wildcard would be appropriate for CONTAINS), or if you are going to look for a term within a string (no wildcard needed for CONTAINS, but one is required for LIKE).
Example - Assuming a string value of HELLO WORLD
select count(e.id) from um2_entries e , um2_entries_attrs a where e.id = a.entry_id
and a.name = 'user.name'
and a.string_value like 'Hello';
** No record found - case-sensitive and partial string
select count(e.id) from um2_entries e , um2_entries_attrs a where e.id = a.entry_id
and a.name = 'user.name'
and a.string_value like 'HELLO';
** No record found - Partial string
select count(e.id) from um2_entries e , um2_entries_attrs a where e.id = a.entry_id
and a.name = 'user.name'
and a.string_value like 'HELLO%';
** Record found
select count(e.id) from um2_entries e , um2_entries_attrs a where e.id = a.entry_id
and a.name = 'user.name'
and CONTAINS(a.string_value, 'Hello') > 0;
** Record found - Oracle Text is case-insensitive
** by default, so mixed-case here doesn't matter. Also,
** the search is against the DR$ tables where
** HELLO is a token. No need for a wildcard.
I just wanted to make the differences between these two searches at least partially clear. Your earlier comparison seemed to indicate that you expected no difference regardless of search criteria and that just isn't the case. Some of the reasons for using wildcard or string functions are not valid when Oracle Text is used. That's one reason it is very usefull. Add stemming, fuzzy search, or a thesaurus and you go FAR beyond LIKE.
Please do reference the CONTAINS sections in the online docs if you have more questions on these differences. They go far beyond where I just did.
-Ron

Similar Messages

  • Business View Is Like and Contain

    Business View Manager does not have Contain function, what would be the alternative for Contain?
    I have string and I am looking for a value within that string, but since contain is not there, what other functionality can I use?
    sT

    Hi Sunil,
    In Business Views Manager, in the Data Foundation, we can create formula for this.
    If you just want to compare the string and not extract a part of it, then you can try using Instr or StrCmp functions.
    If you intend to extract a part of the string and further use the extracted part in the report,  then you would need to define an array which will be able to give you the desired results.
    More inmformation on Instr and StrCmp can be found in the help section of Business Views Manager.
    Please do let us know if this helps.
    Regards,
    Abhishek Jain.

  • Using databases and container events?

    I'm having trouble finding documents show how one should use databases and listen for container events? I'm using Berkley Java DB. I'll need all my remote object to have access to the database. How do I pass that in? Custom adapters? Also, when Tomcat shuts down I need to close the database, how would this be down? Custom adapters? So I may be answering my own question, but I'm asking cause I really don't see anything in the documentation that points this out. It really looks like I'd be using singletons and factories for this. I could register a Servlet or Servlet Context to listen for Tomcat events, but I figured it couldn't hurt to ask others using Blaze, as I'm very new to it. Thanks.

    So how would you tell Blaze to use this? Is there something you put into the config file? My thoughts on all this is to use PicoContainer to manage all services then create an adapter to inject all resources when creating remote objects. But this seems a little heavy if Blaze can do all this for me. The adapter seems like the injection point to me. Is that not what it's used for? Or is using it like that bad practice under Blaze? I've read all I can find on Blaze, so either it's missing docs, or I'm not finding them all. If I'm missing them, by all means let me know where to go. I don't want to ask questions that are already answered in documents else where.
    On Tue, May 20, 2008 at 10:51 AM, Mete Atamel <
    [email protected]> wrote:
    A new message was posted by Mete Atamel in
    General Discussion --
      Using databases and container events?
    I think it's mainly in JavaDocs but here's a sample I have where I check to make sure the HSQLDB is running as the BlazeDS starts up:
    import java.sql.Connection;
    import java.sql.SQLException;
    import flex.messaging.config.ConfigMap;
    import flex.messaging.services.AbstractBootstrapService;
    public class DatabaseCheckService extends AbstractBootstrapService
        // This is called right before server starts up.
        public void initialize(String id, ConfigMap properties)
            Connection c = null;
            try
                // Check that the database is running...
                c = ConnectionHelper.getConnection();
                // ... if yes return
                return;
            catch (SQLException e)
                System.out.println("DB is not running!");
            finally
                ConnectionHelper.close(c);
    // This is called as server is starting.
        public void start()
            // No-op
    // This is called as server is stopping.
        public void stop()
            // No-op
    View/reply at
    Using databases and container events?
    Replies by email are OK.
    Use the
    unsubscribe form to cancel your email subscription.
    "All that is necessary for the triumph of evil is that good men do nothing." - Edmund Burke

  • Tuning SQL query with SDO and Contains?

    I'trying to optimize a query
    with a sdo_filter and an intermedia_contains
    on a 3.000.000 records table,
    the query look like this
    SELECT COUNT(*) FROM professionnel WHERE mdsys.sdo_filter(professionnel.coor_cart,mdsys.sdo_geometry(2003, null, null,mdsys.sdo_elem_info_array(1,1003,4),mdsys.sdo_ordinate_array(809990,2087279,778784,2087279,794387,2102882)),'querytype=window') = 'TRUE' AND professionnel.code_rubr ='12 3 30' AND CONTAINS(professionnel.Ctx,'PLOMBERIE within Nom and ( RUE within Adresse1 )',1)>0
    and it takes 15s on a bi 750 pentium III with
    1.5Go of memory running under 8.1.6 linux.
    What can i do to improve this query time?
    null

    Hi Vincent,
    We have patches for Oracle 8.1.6 Spatial
    on NT and Solaris.
    These patches include bug fixes and
    performance enhancements.
    We are in the process of making these patches
    avaialble in a permanent place, but until then, I will temporarily put the patches on:
    ftp://oracle-ftp.oracle.com/
    Log in as anonymous and use your email for
    password.
    The patches are in /tmp/outgoing in:
    NT816-000706.zip - NT patch
    libordsdo.tar - Solaris patch
    I recommend doing some analysis on
    individual pieces of the query.
    i.e. time the following:
    1)
    SELECT COUNT(*)
    FROM professionnel
    WHERE mdsys.sdo_filter(
    professionnel.coor_cart,
    mdsys.sdo_geometry(
    2003, null, null,
    mdsys.sdo_elem_info_array(1,1003,4),
    mdsys.sdo_ordinate_array(
    809990,2087279,
    778784,2087279,
    794387,2102882)),
    'querytype=window') = 'TRUE';
    2)
    SELECT COUNT(*)
    FROM professionnel
    WHERE CONTAINS(professionnel.Ctx,
    'PLOMBERIE within Nom and ( RUE within Adresse1)',1) >0;
    You might want to try reorganizing the entire
    query as follows (no promises).
    If you contact me directly, I can try to
    help to further tune the SQL.
    Hope this helps. Thanks.
    Dan
    select count(*)
    FROM
    (SELECT /*+ no_merge */ rowid
    FROM professionnel
    WHERE mdsys.sdo_filter(
    professionnel.coor_cart,
    mdsys.sdo_geometry(
    2003, null, null,
    mdsys.sdo_elem_info_array(1,1003,4),
    mdsys.sdo_ordinate_array(809990,2087279,
    778784,2087279,
    794387,2102882)),
    'querytype=window') = 'TRUE'
    ) a,
    (SELECT /*+ no_merge */ rowid
    FROM professionnel
    WHERE CONTAINS(professionnel.Ctx,
    'PLOMBERIE within Nom and
    ( RUE within Adresse1)',1) >0
    ) b
    where a.rowid = b.rowid
    and professionnel.code_rubr ='12 3 30';
    **NOTE** Try this with no index on code_rubr
    null

  • Differnce between jre and container

    This may be a silly question, but i want to know what is the difference between jre and a container?

    gtkrish wrote:
    yes i am specifying about containers like sevlet container , it also does the job of executing code,right?No. The JVM is executing the code (insofar as the JVM ever actually executes anything). The container simply manages some of that code for you, and provides services to your code, such as JNDI

  • Is it possible to print current popup screen or area like ABAP container?

    Is it possible to print current popup screen or area like ABAP container?

    Hi Zhiqiang,
    The user can mark the content and select in the browser the option to only print the selected area. Printing, which is controlled from the background, should be done using the server-built-in technologies, such as Adobe integration, SmartForms, etc. That way forms can be printed in i.e. different languages.
    Best regards,
    Thomas

  • I have hp compaq nw9440 mobile workstation the white screen appear and contain an error

    i have hp compaq nw9440 mobile workstation the white screen appear and contain an error:
    uoy computer has suffered from a non - recoverable system error please call our support line for assistance
    713-634-2494

    sneakypete1 a écrit:
    I use Photoshop Elements 12 for my photos.  I have a constant problem where my photos don't print like they appear on the screen.  They come out darker than the screen shows.  If brighten them in the program, I have to almost make the photo appear "white" in order to look good printed.   ??????  What can I do to fix this problem??
    I am ready to bet that your display is much, much too bright (like all displays at factory settings.
    Why Are My Prints Too Dark

  • Safari launches a window and contains several tabs

    Oh boy, My Safari was perfect for the most part in the last 3 years, that is to say, if I launch Safari to browse the web, the browser would launch with a new window, fresh with default page starting at top sites. And by top sites, I mean the various web sites or pages that i have previously gone to recently most frequently. These pages are presented in miniaturized thumbnails of the whole page, or the top part of the page, and are neatly presented in 4, 8, or 12 slots tabulation for my choosing, or that my keyboard focus would already be on the address bar so I could type any other url as I wish. But until the last 1-2 updates ago I start to notice something strange, when I launch Safari, the browser doesn't go to the usual way as I described above, instead it launches a window and contains several tabs. Of which are places i have been recently, but I wouldn't call those as "top sites" by a long shot. At first I didn't realize what's happening exactly. In fact it seemed to me a bit like when my Safari reopen the tabs from my previous session. It first started with a few tabs, and then a few more each week (actually my main browser is now Chrome sorry to say, but there are several personal reasons that I still use Safari to browse certain web sites, therefore, I may not open and use Safari every day. I think last week was still just 10 tabs or so, now it's 156 tabs... my mac constipates from the sharp drain of memory and it now happens even before the browser window has started rendering. Usually, when my mac is done with beach balling, i immediately right click on the first tab I see, and select "close all other tabs", then command-w to close the last tab. Then I reopen new tab/window (cmd-n) and start my browsing all fresh. A new window launches, but only to dump the 156 tabs all over on me again. clearing web data, cookies, clearing cache, disabling all extensions, nothing seems to work so far. And the Apple Care Support would probably tell me to format the hard disk and reinstall new. I've been down that road too many times already, almost as much as I had to do the same thing when i was using windows. Ugh, even Chrome is far from perfect, that's why i come back to Safari from time to time. And I find my Firefox experience is still clunky, ugh. Have we fallen in to the Dark Ages for web browsers or something?
    <Re-Titled By Host>

    Of which are places i have been recently
    Delete the cache ..
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.

  • The PST files are rather large and contain tons of folders each

    The PST files are rather large and contain tons of folders each, so it's kinda hard to go through each one finding this very specific Subject line. Is there any other way to scan within the PST files to find a particular text string, like this Subject
    line? Before I start googling this stuff, I thought someone might already been there/done that.

    Great, but all pst files aren't indexed so this could take a long time if you try it this way.
    Outlook Recovery Toolbox from: http://goo.gl/MU7fEk and it helped me to get the PST data after a heavy corruption. This is the capable software which can also be used to get the deleted pst data like emails
    etc. You can find it here: http://goo.gl/MQn5gI

  • Mixing JavaBean popup menu and container popup menu.

    Hi,
    I'm trying to respond to a popup event on a JavaBean by showing a JPopupMenu that will contain both Bean menuItems and container menuItems.
    Tanks a lot
    Fran�ois Martel

    There are multiple problems with your code:
    - You're using irregular quotes
    - You're not inserting the cChoice variable correctly into the string
    - Using openDoc you can't specify open parameters like this
    And no, you can't create pop-ups without JavaScript. But you can use plain text field for the list of items and a button with a JS code that takes the selection and uses it to open the file.

  • Rownum and contains() problem.THX

    hi,I meet a strange problem.
    I employ rownum and full text index in my sql as follow.But it does not works well ,and nothing can be displayed at all.
    The most strangest is , the sql which lies from line 3 to line 11 can works well(It could display what I want),but the whole(1~13) can't.
    anyone could find out the problem?THX.
    1 select *
    2 from (
    3 select row_.*,rownum as rn
    4 from (
    5 select *
    6 from node c, s_title s1
    7 where exists(select y.PKID FROM NODE_TYPE y WHERE y.PKID=s1.NODE_ID AND
    8 y.PKID=c.PKID)
    9 and contains(s1.value,'abc',1)>0 ORDER BY score(1) desc ,ORDERNO asc
    10 ) row_
    11 where rownum < 20
    12 )
    13 where rn>0

    Please either post including a 4 digit Oracle version, or do not post at all.
    Please also don't post vague generalities like 'works well' or 'doesn't work well'
    Either post output, required output, or do not post at all.
    Crystal balls have worn out here long since because many similar posters 'couldn't do the needful'
    Sybrand Bakker
    Senior Oracle DBA

  • E71 Linux Information, likes, and dislikes

    The E71 is a fairly cool phone, but it took me a little while to get things working well with Linux after upgrading from my Motorola v3xx. To avoid other people having to figure things out, here's my info, and later in this a list of likes and dislikes.
    Bluetooth
    The E71 works fine with bluetooth. I bonded the device to my computer with the instructions at http://arstechnica.com/journals/linux.ars/2007/12/10/using-a-bluetooth-phone-with-linux
    After installing the software, I made my phone non-hidden, did:
    hcitool scan
    Scanning ...
    xx:xx:xx:xx:xx:xx Corey's Phone
    then got the address (the xx:xx... part). Then I did:
    obexftp -b xx:xx:xx:xx:xx:xx -l
    and it asked on the phone for a passcode, then on the computer. Enter the same 4-digit number in both places. Now you are bonded. You can use obexftp to poke around in the phone.
    All fine and dandy, but I also use my phone as a tether to get to the Internet. That's when I ran into my first problem. You use:
    sdptool browse xx:xx:xx:xx:xx:xx
    to find the RFCOMM channel to use for dial up, but there's a bunch and I chose the wrong one. After hunting some more, I found out that channel 2 was aptly named "Dial-Up Networking". Set the right channel in /etc/bluetooth/rfcomm.conf:
    rfcomm0 {
    # Automatically bind the device at startup
    bind yes;
    # Bluetooth address of the device
    device xx:xx:xx:xx:xx:xx;
    # RFCOMM channel for the connection
    channel 2;
    # Description of the connection
    comment "Nokia E71";
    restart bluetooth with /etc/init.d/bluetooth restart, and voila, /dev/rfcomm0 appears and it's a PPP dialup. So my PPP scripts to dial into AT&T worked perfectly. You can hunt on the internet for various scripts for this, or I can post one if someone needs it, though it would only work for AT&T.
    USB
    Now for USB. It's kind of ironic, but the high-speed data from AT&T is actually faster than the bluetooth data rate. Kind of sucks. So I tether the phone with USB whenever I want to transfer a lot of data (like MP3 files) or when I want a faster network connection. Getting USB working hung me up for a while, though.
    Plug in the USB cable (which thankfully came with the phone) and you get a menu of things to do, as USB can really only do one thing at a time. The "Mass Storage" is what is used for file transfer to the microSD card. I guess that's an OK name, though it could have been a little more intuitive.
    I don't know what "Media Transfer" does.
    You would think that "Connect PC to web" would connect your PC to the web. But you would be wrong. To get a /dev/ttyACM0, a simulated serial port to connect to the web using PPP, you choose "PC Suite". The "Connect PC to web" option creates a simulated CDROM drive that has the PC software to connection your PC to the web through the phone. With the proper selection, I could dial in at will. Now I'm happier, though this cost my some unnecessary time.
    VPN
    Now I've got a cool phone that does all kinds of stuff with email. So I think: "I'll set up a VPN so I can get to my home and work email." This was not easy. The best instructions I found were at http://wiki.paepstin.info/nokia:vpn. But they are not quite accurate.
    First of all, if you are going to use RSA, the information the keys was wrong. You can completely ignore the information about the "fqdngw" key and certification. You only need to create on key and one certificate for both the phone and the VPN gateway. Put them into /etc/ipsec.d/private and /etc/ipsec.d/certs, respectively. You do need to put the server certificate in as it says. And the "RSA" entry in ipsec.secrets is wrong, it should be the key that you put into the private directory, not the name on the web page.
    I was able to get RSA to work with this, but it was annoying as the phone asks you occasionally for the key store password. So I'm using PSK (with a good password).
    Creating the keys is easier than it described in the web page due to some better software begin available from Nokia. Unfortunately, it only runs on windows. You can get it at http://businesssoftware.nokia.com/mobile_vpn_downloads.php, it's named "Nokia Mobile VPN Client Policy Tool for Microsoft Windows". The settings in the tool can be directly accessed with the "Advanced view" options, you need to set the values up as described in the tool, but you need to set the mode to "X509 DN" if you use RSA.
    You can also do this all on Linux, perhaps, you can search around with Google and find that information.
    Things that I like
    The phone is very fast. Viewing web pages on my old Motorola v3xx seemed to be limited by the rendering speed of the web browser, not the bandwidth. Not so with this phone.
    The email works quite well, in general.
    Wireless LAN access works well.
    SIP worked perfectly the first time with Gizmo (I already had a Gizmo account, highly recommended). This will be really useful when I travel internationally.
    I use Scheduleworld to sync my schedule and contacts with Google calendar. The syncing was very fast and worked perfectly. It also syncs Notes, which was one of the most annoying things missing on my Motorola v3xx. (It didn't have notes at all, in fact.)
    The main screen is quite functional for me. I could set everything up like I wanted, and it has useful information.
    You can run multiple things at the same time! I really hated that about the Motorola v3xx.
    The battery meter seems to work correctly. The one on my Motorola v3xx was worthless.
    Thinks I don't like
    The IMAP mail works well for most everything, but you cannot move messages between folders. Since I use spamassasin, I have a special folder that spamassasin detects spam in, and another non-spam folder. But I can't read them move the mails to the various folders. I really don't like this.
    Voice dialing is completely useless for a number of reasons:
    1) It seems rather unstable, and often causes my phone to reset. Oddly enough, this has been getting better over time, perhaps due to the voice learning.
    2) Even if it didn't cause my phone to reset, it doesn't seem to work well. I know it learns, but my Motorola v3xx didn't have any learning and worked quite well.
    3) Even if the word recognition worked well, it's still not usable without being able to look at the phone and press buttons. The phone has no way to say "No, I don't want that one" through a voice command. You have to be looking at the phone in case it makes a mistake (which could be embarrassing), but that completely defeats the purpose of voice command. When my Motorola v3xx did voice command, it would ask you if it was correct and allow you to go through the selections it found, completely with voice commands.
    I'm really going to miss voice dialing. Probably the greatest loss switching from the v3xx.
    The phone should use standard microUSB connecter and should charge the phone through it. My Motorola v3xx did this, and I have a bunch of these cables lying around (from various cameras and such) and a bunch of chargers. I don't understand why any phone manufacturer would want to do anything else, except to make their customers lives more difficult and tie them to the manufacturers various chargers. This really sucks.
    I've had problems with Bluetooth disconnecting the headset. It's rather annoying, and I'm not the only one who's had the problem, as can be seen by searching through these forums. I just got a Jawbone, and it doesn't seem to be nearly as bad as the H700 I have previously, though.
    You have to use XAUTH for VPN logins, at least with openswan. This is somewhat annoying. It would be very nice if Nokia could fix this (apparently the E60 didn't have this problem so it's a new problem, as evidenced in the VPN web page I posted above). If you don't use XAUTH, it seems to connect (at least from openswan's point of view) but the phone never transitions on to do the thing it was going to do.
    WLAN really sucks power. It advertises 6.9 days, but I don't even get 12 hours. I don't get the values for GSM or WCDMA, either, but 12 hours is just not enough.
    The 2.5mm audio jack really sucks. Why can't it be a standard 3.5mm jack? I had to look for a while, and I think I found a 2.5mm to 3.5mm converter that will work at http://www.atmasphere.net/wp/archives/2008/08/13/e71-recommended-accessory-javoedge-stereo-adapter
    I've noticed various glitchy problems. For instance, once I had to mailboxes connected on the same VPN at the same time, and then I disconnected one, then the other. The first one never disconnected and would not disconnect. I had to reset the phone to fix the problem. I've seen other little glitches like that, though none as bad as the resetting problem with the voice command and I've never been able to reproduce any of the other ones.
    The mapping program is not intuitive. I still haven't figured out how to use it very well. After I use it for a while I might figure it out. The ability to download maps to the phone would be nice for situations where you are not connected to the internet. I haven't done much with this. I really like the UI for Google maps, this is a big step down from there.
    VPN connections do not show up in the "Active data connections" section of the connectivity manager.
    The documentation is lacking a lot. Almost all the help on the phone is like the "Proxy port number" setting under "Access point settings". The help is "Enter the proxy port number". That kind of documentation is useless. I'd like to know what the thing does. And the browser has keyboard shortcuts, but I have no idea what they are. A scroll forward and back would be mighty handy keyboard shortcuts, and they might exist, if only someone wrote it down...
    Whew, that's a bunch, I guess, but mostly minor (and mostly correctable with a software update, hint hint). If the above things were fixed, it would make this a faultless phone, at least for me. But in addition to those, the following things would make the phone uber-cool:
    A big screen and a slider. The screen the only thing I like about the iphone (I really hate that it doesn't have a keyboard, plus you can't tether it and voice command really sucks on the iphone, too.)
    It could run Linux . Sorry, I couldn't resist.

    EXCELLENT! Could you please please post your dialling files for AT&T?? Even better if you could upload a zip of your entire /etc/ppp/peers folder that would be nicer even. I am in desperate need to get the $15 MediaNet tethering on my Fedora 10 laptop working over bluetooth, I used to do it before with T-mobile T-zones with my E61, but since then I switched to my E71 and moved my number to AT&T and my attempts to adapt my scripts to AT&T have not been successful yet however tethering under Windows XP with the Nokia PC suite works though...

  • HT204268; I have purchases on an aol login pre 2008 and all recent stuff under an apple id. I currently see and use everything when i login with the apple id. After March 31st will my apple id account still show and contain all?

    HT204268; I have purchases on an aol login pre 2008 and all recent stuff under an apple id. I currently see and use everything when i login with the apple id. After March 31st will my apple id account still show and contain all?
    I understand the instructions to create a new account id (apple id) from the old aol account. However, does this mean my purchases will be split into 2 accounts; or does the fact that I currently see everything under my apple id (regardless of the purchased by username) mean this will all still appear in my current account as it does now?

    You see them where when you login your non-AOL account ?
    If you currently have two accounts (the AOL username account and an email address account) then you will continue to have two accounts, and nothing should change when you update the AOL account to be an email address (apart from how you access that account).
    You will just be renaming the account to have an email address for accessing it, not creating a new account.

  • Display Like and Share functionality in SharePoint 2013 search result

    Hello Experts,
    I dont Know whether i am asking a good question or bad one . but i am not very much expert in search.
    I have to display No of Likes , Share functionality in SharePoint Search Results. 
    i know little basic about how display templates works. i want to implement these like and share functionality as actions  in Item_common_hoverpanel_Actions template. show that i can see in preview.
    please if any body can help me . i will be highly thankful to you.
    Mukesh

    This will be difficult. The number of likes has a managed property called LikesCount but it is not populated by the search crawler. So your JavaScript will have to read the "LikesCount" field of the corresponding list item. That would be a
    lot of code to execute in the item display template just to display the number of likes. You could have a button that displayed a callout that would get the information and display it. The Sharing could be done via JavaScript in your item display template
    using a REST call. You can see an example of code to do that here:
    http://sharepointfieldnotes.blogspot.com/2014/09/sharing-documents-with-sharepoint-rest.html?showComment=1428595550241#c3227376854590814312
    Just remember the user must have permission to share these documents, so your code will have to handle this.
    Blog | SharePoint Field Notes Dev Tools |
    SPFastDeploy | SPRemoteAPIExplorer

  • I like and use Top Sites but it has become unsuable with this constant blacking out and reloading the thumbnails.  My MBP has not seen a problem at all.   I have been searching every other day for over a month trying to find a fix in Windows Safari with n

    I like and use Top Sites but it has become unsuable with this constant blacking out and reloading the thumbnails.  My MBP has not seen a problem at all.
    I have been searching every other day for over a month trying to find a fix in Windows Safari with no joy.  I want to resolve, not switch browsers. Please offer up a solution that only refreshes the Top Site thumbnails once a day or as some controlable interval.  Started about two versions ago, now on ver 5.1.5. Windows 7 64bit.
    Safari 5.1.5 for Win64 bit, Windows 7!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    I think I solved the wifi connection problem, just by switching off completely the router! sounds trivial, but in this case it worked!!!
    the funny behaviour of the trackpad/cursor still persists. any suggestion???
    thanks again

Maybe you are looking for

  • Auto viewer gallerys not working, please help??

    Hi please look at www.websitedesignportugal.com/townhouse2 if you look at the top right there is 2 button for external gallery and internal. these link to a auto viewer galleries. when i preview in dreamweaver it works but when i upload the site it d

  • About ale partner frofile and modal distribution

    hi sir\medam             my broblem about ale, achualy i done data send and recive  through BD10 AND BD11. but  not  use partner profile nd modal distribution. my problem has how use partner profile nd modal distribution. plz say step by step process

  • Turning off the default outcome in workflow step

    Hi, In a workflow step, I linked a method xxx, in method xxx I have coded 2 outcomes, when i use this method in my step I am getting a default outcome "Step executed" outcome in addition to the outcomes already coded in the method. so instead of 2 ou

  • Displaying a panel

    I have the following class Complete which i am calling from another java class. The problem is that the frame is getting diaplayed but the panel is not added on the frame...when i minimize the frame and then click on it to see again, the i can see th

  • Download of user data from SU01

    Hi, Can anyone point me to a report that will give me a download of all user data held in SU01. In particular I am looking for email address and parameters? Thanks Hannah