Autodesk Buzzsaw and Search

Hi,
Our company is using Autodesk Buzzsaw, a document management system for storing all the building construction related files (PDF, images, BIM files). We would like to integrate our internal SharePoint Portal(2013 standard version) to display the
content from Autodesk Buzzsaw.
I want to know if we can use SharePoint BCS functionality to index and search the Buzzsaw and display the same in portal? Or does SharePoint search engine requires a entity extractors or indexer for Autodesk Buzzsaw content?
Thanks
Pat

Doesn't require might be a better prhase but a second reading implies you're right.
If you can connect Buzzsaw content to SharePoint via BCS then SharePoint can index that information. Anything that isn't included in the BCS connection will obviously be impossible for SP to index so the actual file contents are going to be beyond SP's ability.
If you were pointing SharePoint at Buzzsaw as a data source then you may need dedicated tools to crawl it. iFilters are used to index particular document types (i.e. there's an iFilter for docx, an iFilter for pdf and so on). Depending on the content it
may require specialist iFilters irrespective of wether it's stored in SharePoint, a file server or in Buzzsaw.
If Buzzsaw provides an OpenSearch compatible index then you could federate the results from Buzzsaw into SharePoint which might give you a richer search experience.
Given the disparity in size we might not be the best place to ask on this. Buzzsaw is a much smaller community and there's a better chance that their forums may have someone who's worked on this before.

Similar Messages

  • What is the best way to store and search 2D data

    Hi,
    There is a set of data (~10k records ) in 2D dimension.
    like this :
    Col 1, Col 2, Col3....
    What is the best way to store and search those records ?
    Thanks in advance
    Wilson

    Hi,
    Either userObjet[][] if you know how much data you have, and the data size is fixed, or use a list of lists. E.g. A Vector of Vectors (some will probably say that you should use an ArrayList instead, and that could be the case, but it sounds like you would want to display the data later on, and a DefaultTableModel (for JTables) uses a Vector as data holder).
    Kaj

  • How to read ,compare and search  unicode in we8mswin1252 ?

    HI,
    I having face a trouble while reading and search Unicode for my project module  and its totally dependent  on Unicode data for displaying and retrieve operation in oracle 11g  sql develop.
    code is  as following in ORACLE 11G SQL DEVELOPER
    FLOW IS ....
    1. Procedure
    create or replace PROCEDURE VR_CRONICA_CHECKDUPLICATE
      iv_UFirstName in nvarchar2  DEFAULT NULL,      --Added for Unicode  31-DEc-2014 Jimmy
      iv_UMiddleName in nvarchar2  DEFAULT NULL,   --Added for Unicode  31-DEc-2014 Jimmy
      iv_ULastName in nvarchar2  DEFAULT NULL,      --Added for Unicode  31-DEc-2014 Jimmy
      v_StatusID OUT NUMBER,
      v_Per_ID OUT NUMBER,
      v_Version OUT NUMBER,
      pResult out TYPES.cursortype
    AS
      cur_hdl int;
      --cur_hdl_TotalRecs int;
      strSQL                    VARCHAR2(32767);
        strSQLWhere          VARCHAR2(4000);
       v_UFirstName nvarchar2(50) := iv_UFirstName;
       p_UMiddleName nvarchar2(50) := iv_UMiddleName;
       p_ULastName nvarchar2(50) := iv_ULastName;
        p_UFirstName  nvarchar2(255) :=v_UFirstName;
          iv_Per_ID NUMBER(10,0);
          iv_Version NUMBER(10,0);
    BEGIN
    DBMS_OUTPUT.PUT('VR_PersonRecord_CheckDuplicate' );
    begin
    cur_hdl := dbms_sql.open_cursor;
    --cur_hdl_TotalRecs:=dbms_sql.open_cursor;
    strSQL  := ' ';
    strSQL  :=  strSQL || '
                                    SELECT
                                                    CAST(PER_ID AS number(8,0)) AS PER_ID,
                                                    CAST(Version AS number(8,0)) AS Version,
                                                     INTO
                                                     iv_Per_ID,
                                                     iv_Version
                                   FROM
                                   VitalRecords_Search_CurrentDoc WHERE' ;
                                      IF p_ULastName is not null THEN
                                              BEGIN
                                                  strSQLWhere  := ' trim(UPPER (U_LASTNAME)) = TRIM(UPPER(:p_ULastName ))';
                                              END;
                                      END IF;
                                      IF p_UFirstName is not null THEN
                                                strSQLWhere  :=  strSQLWhere || '
                                                  AND  TRIM(UPPER (U_FIRSTNAME)) = TRIM(UPPER(:p_UFirstName|))';
                                    END if;
                                      IF p_UMiddleName IS NOT NULL THEN
                                            BEGIN
                                                      strSQLWhere  :=  strSQLWhere || '
                                                        AND  TRIM(UPPER (U_MIDDLENAME)) = TRIM(UPPER(:p_UMiddleName))';
                                            end ;
                                      end if ;
                                      v_Per_ID :=  iv_Per_ID;
                                     exception
                                                        when no_data_found then
                                                                                  begin
                                                                                      v_Per_ID:=0;
                                                                                      v_Version:=0;
                                                                                      v_StatusID := 0 ;
                                                                                  end;
                                          end;
    --IF pResult%ISOPEN THEN
    --CLOSE pResult;
    --END IF ;
    open pResult for
                                  select PER_ID  ,
                                              Version  ,
                                              U_FIRSTNAME  ,
                                              U_MIDDLENAME  ,
                                              U_LASTNAME 
                                  from table(readDWSeachPersons1(cur_hdl));
    END;
    .Function
    create or replace FUNCTION READDWSEACHPERSONS1
            (cur_hdl int)
                      RETURN
                                         DWSeachPersonsTypeTableType1
    PIPELINED IS
            PER_ID  NUMBER(10);
            Version  NUMBER(10);
            U_FIRSTNAME NVARCHAR2(500) ;
            U_MIDDLENAME NVARCHAR2(500) ;
            U_LASTNAME NVARCHAR2(500) ;
    BEGIN
          dbms_sql.define_column(cur_hdl, 1, PER_ID);
          dbms_sql.define_column(cur_hdl, 2, Version);
          dbms_sql.define_column(cur_hdl, 3, U_FIRSTNAME   ,500);
          dbms_sql.define_column(cur_hdl, 4, U_MIDDLENAME   ,500);
          dbms_sql.define_column(cur_hdl, 5,  U_LASTNAME   ,500);
      LOOP
      -- fetch a row
               IF dbms_sql.fetch_rows(cur_hdl) > 0 then
                                -- fetch columns from the row
                                   dbms_sql.column_value(cur_hdl, 1, PER_ID);
                                   dbms_sql.column_value(cur_hdl, 2, Version);
                                   dbms_sql.column_value(cur_hdl,  3, U_FIRSTNAME  );
                                   dbms_sql.column_value(cur_hdl,  4, U_MIDDLENAME  );
                                   dbms_sql.column_value(cur_hdl,  5, U_LASTNAME   );
                                           PIPE ROW (DWSeachPersonsType1(PER_ID,Version,U_FIRSTNAME,U_MIDDLENAME,U_LASTNAME));
                         ELSE
                               EXIT;
              END IF;
      END LOOP;
      RETURN;
    END;
    3. Type
    create or replace TYPE DWSeachPersonsType1 AS OBJECT
    PER_ID  NUMBER(10),
    Version  NUMBER(10),
    U_FIRSTNAME NVARCHAR2(500) ,
    U_MIDDLENAME NVARCHAR2(500) ,
    U_LASTNAME NVARCHAR2(500)
    4. TYPE
    create or replace TYPE DWSeachPersonsTypeTableType1 AS TABLE OF DWSeachPersonsType1;
    error is coming like :
    ORA-01003: no statement parsed ORA-06512: at "SYS.DBMS_SQL", line 1450 ORA-06512: at "A0_SJFRM_9AUG_JAYESHB.READDWSEACHPERSONS1", line 16
    so,friends let me sugges solution regarding asap..its very urgent ..

    Hi
    because you have such a hurry, you have done bad design i think Why separating responsibilities of executing SQL in table function that way?
    You cannot have any advantage from separation because it is not general code. SQL is created here and there is function that defines columns to that SQL.
    Developer has no clue what it is executing until searching code for that cursor parameter. That SQL concatenation sucks also.
    That code is not easy to maintain or test or comprehend quickly or at all
    At least to me that is a big mess.
    Suggest that you do that simplest logic as possible and add that missing parse there.

  • How to Print a interactive report without  action button and search bar

    Hello every one....
    I am working on printing an interactive report. If there are 20 columns in that report i need to select some columns for printing. For this purpose i used actions button which is in the search bar of the interactive report. But i do not want to get that Actions button and search bar to get printed in the printing page. Can any one give a solution to sort out my problem
    Thanks
    Manoj.

    >
    Welcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and ensure you have updated with your profile with a real handle instead of "886412".
    You'll get a faster, more effective response to your questions by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB version and edition
    <li>Web server architecture (EPG, OHS or APEX listener)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s)
    I am working on printing an interactive report. If there are 20 columns in that report i need to select some columns for printing. For this purpose i used actions button which is in the search bar of the interactive report. But i do not want to get that Actions button and search bar to get printed in the printing page. Can any one give a solution to sort out my problemSee +{message:id=2475831}+
    Always search the forum thoroughly before posting a question: 98% of questions (like this one) have been answered before.

  • When I am NOT private browsing Firefox will not allow me to delete or change the website address in the location bar. My only remedy is to open a new window and search in google then click the link to that site through google. How can I resolve this?

    Question
    When I am NOT private browsing Firefox will not allow me to delete or change the website address in the location bar. My only remedy is to open a new window and search in google then click the link to that site through google. When I swap to private browsing firefox allows me to anter the website address directly into the location bar - but this is a slow [prcess to swap back and forth - also by dint of using private browsing I loose my website information.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Spotlight searching no longer working - indexing and search disabled.

    I've been searching the web and tried everything:
    Server 10.5.8
    In Server Admin - the attached drive is a SharePoint with Spotlight search on.
    I've used mdutil to enable Spotlight.
    I've checked permissions.
    I can search the Boot Drive. I can't search the attached drive.
    mdutil returns indexing and search disabled when used to turn it on.
    very frustrating.
    Anyone out there have a clue?
    Thanks,
    Mark

    HI James,
    Open System Preferences/Spotlight and click the Privacy tab. Where you see; Delete any locations listed, Quit System Preferences and restart your Mac and see if you can use Spotlight.
    Spotlight Tips
    Spotlight: How to re-index folders or volumes
    Carolyn

  • My iPhone4 doesn't appear to have "FacTime" (App), yet when I "ring" it from my iPad's FaceTime, I hear a faint ringing tone but nowhere to answer the call? Anyone out there suggest what's wrong? (going to the App Store and searching "FaceTime" brings iPa

    My iPhone4 doesn't appear to have "FacTime" (App), yet when I "ring" it from my iPad's FaceTime, I hear a faint ringing tone but nowhere to answer the call? Anyone out there suggest what's wrong? (going to the App Store and searching "FaceTime" brings apps that have icons different to that of my iPads!)

    Yeah, I know I can restore it, but I might as well go ahead and try. I just finished a backup for icloud and itunes to make sure, I'll go ahead and restore it and set it up as new and see how that works. Seems like I have no other options at this point, I'd still like to know what they did with the Download tab in itunes store, if they removed it or if I'm just overlooking it.

  • How do I get all the control buttons in one place in 3.6.16, like they used to be in previous versions? Having the refresh and stop buttons between address and search windows, and the home button to the far right is awful.

    In 3.6.16, the buttons are all over the place. In previous versions, the forward, back, refresh, stop and home buttons were all together. In this version, the refresh and stop buttons are between the address and search windows, and the home button to the far right.
    I would love to have them all together as they used to be - much more user friendly that way. I have tried installing alternate themes, but the coding of this version over-rides the themes.

    Firefox 4.0 has a combined Reload and Stop and Go button that appears at the right end of the location bar.
    To restore the Firefox 3 appearance you can use these steps:
    * Open the "View > Toolbars > Customize" window to move the Stop and Reload button out of the location bar.
    * Move the Reload and Stop buttons to their previous position at the left side of the location bar.
    * Set the order to "Reload - Stop" to get a combined "Reload/Stop" button.
    * Set the order to "Stop - Reload" or separate them otherwise to get two distinct buttons.

  • Encountered an error when attempting to open Lightroom for the first time. Went to Lightroom Help and searched for the error "An error occurred when attempting to change modules". Non of the solutions helped. what now?

    Encountered an error when attempting to open Lightroom for the first time. Went to Lightroom Help and searched for the error "An error occurred when attempting to change modules". Non of the solutions helped. What now?

    I am getting this error message as well. I have just downloaded Lightroom recently. I try to click on Lightroom / preferences....and nothing happens. I tried to uninstall and it is greyed out so I can't do that either. Suggestions? Please help?

  • I'm unable to clear my search history after many attempts with the firefox instructions as I'm unable to check the "Form and Search History" box for some reason

    I've tried several times to clear my search history without any success. I've been able to do so in the past, but this is the first time I've tried in a while and for some reason it will not let me check the box for "Form and Search History." Then sometimes it will let me check that box, but when I click "ok" to apply the clearing of the search history, nothing happens and it still remembers all my sites. At that point I try to clear it again and its back to not letting me check the "Form and Search history" box (I've gone through this cycle a few times). I tried looking through some of suggested articles that Firefox sent me too, but I don't know much about computers and just doing the things they seem talking about isn't working either. Please help, thanks!

    It seems to have worked itself out. Thanks anyway!

  • IDOC Related - Search Term 1 and Search term 2

    Hi,
          In FK03 , we have Search term 1 and search term 2  in the second screen
          I am trying to populate those values  using IDOC type CREMAS  and segment  E1LFA1M
          In that  only search term 1  SORTL is there ,
          Any idea how can we populate Search term 2      
    thanks
    chandra
    Edited by: Chandrasekhar Jagarlamudi on Apr 21, 2008 7:53 PM

    Hi!
    It can be performed:
    - with modifying the standard
    - copying it to a ZCREMAS interface, change the structure, and of course you have to set all IDoc settings to this new one
    Regards
    Tamá

  • How to select and search text in this document?

    http://www.oracle.com/technology/products/manageability/database/pdf/ow05/PS_S003_274003_1 06-1_FIN_v2.pdf
    is a document I can read but cannot copy text from. I can't search for any text in it either. Is there a way to convert it to a PDF file I can select and search text in? What did the author do to make it "encrypted"? Thanks.
    Yong Huang

    I notice Google can convert it to plain text:
    http://74.125.95.132/search?q=cache:e4rkLs8pPekJ:www.oracle.com/technology/products/manage ability/database/pdf/ow05/PS_S003_274003_106-1_FIN_v2.pdf+understanding+shared+pool&cd=1&h l=en&ct=clnk&gl=us
    (If that long URL doesn't work, just search for "understanding shared pool" and click "View as HTML".)
    For now I'll use that. Thanks everyone.
    Also, my local desktop search program Copernic can also index keywords in the article.

  • Appending objects in text file and searching.......

    I have been trieng to implement simple search operation on the class objects stored in the text file. but when i try to append new objects in the same file and search for the same; java.io.StreamCorruptedException is thrown. wat the problem is, that wen i append to the text file; it stores some header information before the actual object is stored and on the deserialization, this header information is causing the exception. the same header information is stored every time, i append to the file. anybody knws hw to get past it??? my code is as given below:
    package coding;
    import java.io.BufferedReader;
    import java.io.EOFException;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.FileReader;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.ObjectInputStream;
    import java.io.ObjectOutputStream;
    import java.io.PrintWriter;
    import java.io.Serializable;
         class Employee implements Serializable{
              private static final long serialVersionUID = 1L;
              String name;
              int id;
              public int getId() {
                   return id;
              public void setId(int id) {
                   this.id = id;
              public String getName() {
                   return name;
              public void setName(String name) {
                   this.name = name;
              public Employee(String name, int id) {
                   this.name = name;
                   this.id = id;
         public class FileSearch{
         public static void main(String[] args) throws IOException
              /*Entering the records into the file*/
              Employee ob = null;
              File file=new File("c:\\abc.txt");
              InputStreamReader isr=new InputStreamReader(System.in);
              BufferedReader stdin=new BufferedReader(isr);
              char fileExist='y';
              if(file.exists())
                   System.out.println("File already exists!!!");
                   System.out.println("Append New Records(press y) Or Search Existing File(press any other button)?:");
                   String strTemp=stdin.readLine();
                   fileExist=strTemp.charAt(0);
              else
                   System.out.println("File doesnt exist; creating new file......");
              if(fileExist=='y')
                   FileOutputStream fos=new FileOutputStream(file,true);
                   ObjectOutputStream oos=new ObjectOutputStream(fos);
                   char choice='y';
                   System.out.println("Enter records:");
                   while(choice=='y')
                        System.out.println("enter id:");
                        String id_s=stdin.readLine();
                        int id=Integer.parseInt(id_s);
                        System.out.println("enter name:");
                        String name=stdin.readLine();
                        ob=new Employee(name,id);
                        try
                             oos.writeObject(ob);
                             //count++;
                             oos.flush();
                        catch(Exception e)
                             e.printStackTrace();
                        System.out.println("Enter more records?(y/n)");
                        String str1=stdin.readLine();
                        choice=str1.charAt(0);
                   oos.close();
              /*Searching for the record*/
              System.out.println("Enter Record id to be searched:");
              String idSearchStr=stdin.readLine();
              int idSearch=Integer.parseInt(idSearchStr);
              try
                   FileInputStream fis=new FileInputStream(
                             file);
                   ObjectInputStream ois=new ObjectInputStream(fis);
                   int flag=1;
                   FileReader fr=new FileReader(file);
                   int c=fr.read();
                   for(int i=0;i<c;i++)
                        Object ff=ois.readObject();
                        Employee filesearch=(Employee)ff;
                        if(filesearch.id==idSearch)
                             flag=0;
                             break;
                   ois.close();
                   if(flag==1)
                        System.out.println("Search Unsuccessful");
                   else
                        System.out.println("Search Successful");
              catch(Exception e)
                   e.printStackTrace();
    }

    966676 wrote:
    All what I need to elect by who this word repeated. But I don't know really how to make It, maybe LinkedListYou should choose the simplest type fullfilling your needs. In this case I'd go for <tt>HashSet</tt> or <tt>ArrayList</tt>.
    or I dont know, someone could help me?You need to introduce a variable to store the actual name which must be resetted if an empty line is found and then gets assigned the verry next word in the file.
    bye
    TPD

  • Address bar and search bar freeze when a pdf is open in Firefox 4

    The address bar and search bar freeze when I open a PDF document in Firefox 4. I have Adobe Reader X installed.
    This means you cannot type anything in the address bar for that tab or any other tab until you close that PDF.
    Any ideas? Thanks! :)

    Oh it was a problem with Adobe's Plug-in. As per [https://support.mozilla.com/en-US/questions/804580#answer-167069 MrKoffee's answer ], I noticed that I already had Adobe Reader X installed but nevertheless I went to adobe.com to download it again. When I installed it this time, it said "installing updated patch". Went back to Firefox to check and problem solved! :)
    Ps. did not need to disable any previous plug-in or even close Firefox.

  • How do I change and set the width of the Address and Search box

    Currently, the Address box crowds out the Search. I really don't need the Address box as much as I need the Search box. I recall a method of setting them using a routine in the Chrome folder but I sure can't find it. Can you help?
    Thank
    Ed

    Method 1:<br/>
    Using the resizer on the interface. See - https://support.mozilla.org/en-US/kb/search-bar-easily-choose-your-search-engine#w_moving-or-removing-the-search-bar (''second bullet item; done without entering customize mode.'' By default, Location and Search bars will occupy all available space on the Navigation toolbar in a 2 to 1 ratio, respectively.)
    Method 2:<br/>
    Add code to userChrome.css below the @namespace line.
    ''@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    See - http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files<br/>
    Adjust the width to your needs, no space before px
    *urlbar-container {max-width: 400px !important;}
    *search-container {max-width: 200px !important;}

Maybe you are looking for

  • Forms / Reports 6i - slow starting printing & FRM-41211 Integration error

    We are having a problem with Forms / Reports 6i that seems to be slowly getting worse. When beginning printing, the CPU usage goes up to 100%. In task manager I can see IFRUN60.EXE or RWRBE60.EXE, or IFBLD60.EXE or RWBLD60.EXE taking up 70% or so of

  • PI 7.11: Adapter Framework caught exception: null

    Hi, I've a ABAP Proxy - to  - SOAP scenario. Message mapping works. In the communication channel monitor I get the following error: MP: exception caught with cause com.sap.engine.interfaces.messaging.api.exception.MessagingException Adapter Framework

  • Doubt in Form Template Customization Using VSTA

    Hi All, i have doubt in InfoPath form development using VSTA. I have one form template, i want to auto fill(Using Hard coded) some of fields in that form like name,date and mobile number. Can any one help me out how to do that. Thanks in advance!

  • Symbian 25.007 on Nokia N8

    At the moment I'm on 22.014! I've been checking for updates OTA for a few weeks just for kicks. I checked through Nokia Suite today and there is this 25.007 update. Only problem is it's not the 1MB update I keep reading about! This is a 1.3GB update!

  • Document numbering for each bank

    Hai Experts, We are having multiple bank accounts. For eg. HDFC Bank             ICICI Bank For each bank the Incoming Payments should be serially numbered, like wise outgoing payments also should be serially numbered. As we have set in the document