Invalid item /users/biadmin/_prefs/volatileuserdata.

After I used a user I restarted Oracle BI Server inclusive OS Windows Server 2008 (Oracle BI 11g) I received the following message:
Invalid item /users/biadmin/_prefs/volatileuserdata.
In the Log-File.
Oracle BI said in the Browser      
Sign In Enter your user id and password.
Unable to Sign In      Unable to Sign In
An error occurred during authentication. Try again later or contact your system administrator.
But: After dropping the User in the Catalog I'm able to sign in and everything is fine and all the items stored in my own folder are deleted.
Do you how to avoid such behavior?
Regards,
Stefan
Oracle BI Presentation Server Log:
Meldung Invalid item \\?\D:\Oracle_FMW\instances\instance1\bifoundation\OracleBIPresentationServicesComponent\coreapplication_obips1\catalog\SampleApp\root\users\biadmin\_prefs\volatileuserdata.atr.
Zusätzliches Detail File:catalogimpl.cpp
Line:818
Location:
saw.catalog.impl.read
saw.userlists.suggestionlist.recalculate
saw.securitysubsystem.session.logon
saw.securitysubsystem.checkauthentication.runimpl
saw.threadpool
saw.threads
ecid: 0000IuMKnw45yW^5xV_AiW1DT_d_00000O,0:1:1
ThreadID: 2264
1
Beziehungs-ID 0:1:1
Komponente OBIPS
Modul saw.catalog.impl.read
Host WIN2K8OBIEE11
Host-IP-Adresse 10.10.10.10
Thread-ID 5932
ECID 0000IuKsOfI5yW^5xV_AiW1DTVLG00001o
Meldung Error loading \\?\D:\Oracle_FMW\instances\instance1\bifoundation\OracleBIPresentationServicesComponent\coreapplication_obips1\catalog\SampleApp\root\users\biadmin\_prefs\volatileuserdata.atr
Zusätzliches Detail File:catalogimpl.cpp
Line:838
Location:
saw.catalog.impl.read
saw.securitysubsystem.session.logon
saw.securitysubsystem.checkauthentication.runimpl
saw.threadpool
saw.threads
ecid: 0000IuKsOfI5yW^5xV_AiW1DTVLG00001o,0:1:1
ThreadID: 5932
Edited by: stefanhess on Mar 8, 2011 5:49 PM
Edited by: stefanhess on Mar 8, 2011 5:51 PM

after deleting
volatileuserdata and cacheduserinfo with there atr-Files the user is working.
But how can I avoid this behavior.
Regards,
Stefan

Similar Messages

  • HFR Issues - "5200: Error executing query: Invalid Item ID"

    Hi All,
    We are using Hyperion HFM application 11.1.1.3. Recently we have upgraded the Oralce Database to 11.2.0.2 and reconfigured the HFM application with this new database version. When I tried to run the Financial reporting through the HFR studio, I am getting error message - "5200: Error executing query: Invalid Item ID". Please could you help me to resolve this issue.
    Thanks,
    Aravindh K

    This was due to an invalid default Point of View for the user that was incompatible with the particular report.
    Change the Preferences to User Point of View Preview and run the report again.
    File > Preference > Financial Reporting > Select Preview "ON" under USer Point of View box.
    Re-run the report and select the desired POV.
    This will prompt the user to change their POV every time he or she opens a report. They can select the correct POV and the report runs correctly.
    You can turn off later. Let me know if it fixed this issue.

  • Open KM folder via WebDav - Invalid Item ID

    Hi!
    In our KM SAP NetWeaver Portal 7.0 we have some folders where a ! is in the name. There was no problem accessing these folders via WebDav since we installed SP 18. If I will access this folder now via WebDav, paste WebDav Url from flder into IE7 and open the link 'Navigation user interface' afterwards I will get an message like this: Invalid Item ID - the item you are attempting to access does not exists. Check wether the name of the associated repository is correct. In the Portal Log i found the following information: Syntax error in URI placeholder: <path to folder>
    Any idea?
    Thanks, Daniel

    Hi Nitsan,
    It depends from where you want to open the webdav folder.
    1. From explorer:
       Go to My network places, and add a new one with the URL you used before. Now it should open directly as a webdav folder. You can also map this to a network drive.
    2 From a website:
       Insert a link in the website using the following format:
    <a style="behavior: url(#default#AnchorClick)" title="Webmap" href="" folder="http://<hostname>:<port>/irj/go/km/docs/<km path>">Webfolder</a>
    This should open directly from the website as a webdav folder.
    Johan

  • ComboBox Invalid Item

    Hi guys.
       My problem is the next..... I made a form with ScreenPainter Addon that contains a combo box item which itemUID = "cbxProveed"
    When i try to make reference to my combo box my application catch an error [66000 -  3 ] Invalid Item. My code is the next.
    Dim loForm as SAPbouiCOM.Forms
    Dim loCbxProveedor As SAPbouiCOM.ComboBox
    loForm = SBOApplication.Forms.GetForm(pVal.FormTypeEx, pVal.FormTypeCount)
    <i><b>loCbxProveedor = loForm.Items.Item("cbxTmplate").Specific</b></i>
    loForm.Freeze(True)
    loCbxProveedor.ValidValues.Add("1", "NADRO")
    loCbxProveedor.ValidValues.Add("2", "SABA")
    loForm.Update()
    loForm.Freeze(False)
    the code in bold is that shot the errror.
    Tks.

    Hi again.
      I found the trouble but i dont know how to resolve =(...
    well the idea is:
      i have an application thath catch before and after events like a FORM_LOAD.
    in the before Event all is well but in the After Event when the FORM_LOAD was executed the application loads an simple form in blank and refers that form application then loads a correct form in my case FORM5 why?
    i will post part of my code..
    please help!!!!!!!!!!!!
    All that i need is to load an User Defined Form and load valid values into a combo box and whe the form appears have the valid values load in it.
    it`s very simple but i have trobules with that
    TKS
    Private Sub SBOApplication_ItemEvent(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean) Handles SBOApplication.ItemEvent
            Try
                '--Before
                If pVal.BeforeAction = True Then
                    Select Case pVal.FormUID
                        Case "Form5"
                            Me.SBOSupplierBefore(pVal)
                    End Select
                Else
                    Select Case pVal.FormUID
                        Case "Form5"
                            Me.SBOSupplierAfter(pVal)
                    End Select
                End If
            Catch ex As Exception
                SBOApplication.MessageBox("clsCatchingEvents. ItemEvent. " & ex.Message)
            End Try
        End Sub
       '--Sub controladores de Eventos
        Public Sub SBOSupplierBefore(ByVal pVal As SAPbouiCOM.ItemEvent)
            Dim loForm As SAPbouiCOM.Form
            Dim loCbxProveedor As SAPbouiCOM.ComboBox
            Try
                Select Case pVal.EventType
                    Case SAPbouiCOM.BoEventTypes.et_FORM_LOAD
                        SBOApplication.MessageBox("Antes de Cargar la forma")
                End Select
            Catch ex As Exception
                SBOApplication.MessageBox("clsCatchingEvents. SBOSupplierBefore " & ex.Message)
            End Try
        End Sub
        Public Sub SBOSupplierAfter(ByVal pVal As SAPbouiCOM.ItemEvent)
            Dim loForm As SAPbouiCOM.Form
            Dim loCbxProveedor, oComboBox As SAPbouiCOM.ComboBox
            Dim oItem As SAPbouiCOM.Items
            Dim loEditText As SAPbouiCOM.EditText
            Try
                Select Case pVal.EventType
                    Case SAPbouiCOM.BoEventTypes.et_FORM_LOAD
                        loForm = SBOApplication.Forms.GetForm("2006000101", 1)
    <b>                    loForm.Visible = True</b>
    -- HERE APEARS A SIMPLE BLANK FORM THEN WHEN MESSAGEBOX IS CLOSED APEARS THE CORRECT FORM..
                        SBOApplication.MessageBox("Despues de cargar la Forma")
                        SBOApplication.MessageBox(loForm.Items.Count)
                        'loCbxProveedor = loForm.Items.Item("1").Specific
                        ''// bind the Combo Box item to the defined used data source
                        'loForm.Freeze(True)
                        'loCbxProveedor.ValidValues.Add("1", "NADRO")
                        'loCbxProveedor.ValidValues.Add("2", "SABA")
                        'loCbxProveedor.ValidValues.Add("2", "MARZAM")
                        'loForm.Update()
                        'loForm.Freeze(False)
                End Select
            Catch ex As Exception
                loForm.Freeze(False)
                SBOApplication.MessageBox("clsCatchingEvents. SBOSupplierAfter " & ex.Message)
            End Try
        End Sub<i></i>

  • SAP PI problem: User credentials are invalid or user is denied access

    Hi!
    I am about to configure SAP PI.
    Therefore I have run post installation wizard step PI_00 and get the following errors:
    Error: Not able to load Function SWF_XI_BPM_AUTO_CUSTOMIZE
    (cause:Name or password is incorrect (repeat logon)).
    Step: Execute SWF_XI_BPM_AUTO_CUSTOMIZE
    Error: User credentials are invalid or user is denied access
    Step: Add Installed Product2
    Questions:
    How can I identify which user/password makes problems here?
    P.S.
    My further problems are:
    2) It is not possible to work with XI tools, such as:
    Integration Directory, Integration Repository, Runtime Workbench
    When I try to execute some action in these tools I get the following error:
    Cannot connect to Repository
    Error during communication with System Landscape Directory: User credentials are invalid or user is denied access.
    2) When I try to access the NetWeaver configuration wizard (http://localhost:50000/nwa)
    I get the followign warnig:
    System Landscape Directory is not available
    Only local systems can be maintened
    Thank you very much
    Thom

    Hi,
    Check the similar discussion  Error in PI postinstallation wizard
    Wrong password PISUPER in PI_00 wizard
    Thanks!
    Edited by: Sudhir Tiwari on Nov 26, 2008 10:29 AM

  • HFR - 5200: Error executing query: Invalid Item ID

    Hi All,
    We are using Hyperion HFM application 11.1.1.3. Recently we have upgraded the Oralce Database to 11.2.0.2 and reconfigured the HFM application with this new database version. When I tried to run the Financial reporting through the HFR studio, I am getting error message - "5200: Error executing query: Invalid Item ID". Please could you help me to resolve this issue.
    Thanks,
    Aravindh K

    Did anything change on the database side? Alias, member name? "Error executing query" usually is associated with a change in the database.
    Regards
    Celvin
    http://www.orahyplabs.com

  • Retail Datawarehouse batch INVALID ITEM/STORE REPORT

    Hi,
    After running DataWarehouse batch, in the DWI server sometimes appears the following two files in the arch directory (/app/retail/data/arch/done.20110726): itemfile, vatfile
    when open itemfile, appers the following:
            INVALID ITEM/STORE REPORT
    This report indicates items that were sold at stores not stocking the items lis
    ted.
    All items listed were processed but one of the following actions should be take
    n:
    1) items should be set up in Retek at the stores listed
    2) items should be physically removed from the stores listed
           STORE                           ITEM
      0000000012                      100385251
            INVALID ITEM/STORE REPORT
    This report indicates items that were sold at stores not stocking the items lis
    ted.
    All items listed were processed but one of the following actions should be take
    n:
    1) items should be set up in Retek at the stores listed
    2) items should be physically removed from the stores listed
           STORE                           ITEM
      0000000013                      100385251when open vatfile, appers the following:
    VAT WARNING AND ERROR MESSAGES FOR STORE 0000000012 ON TRANSACTION DATE: 20110714
    APPLICATION ERROR: Record#=0000006420: Table vat_item has no entry for item=100385251 *region=0001* related to store=0000000012
    VAT WARNING AND ERROR MESSAGES FOR STORE 0000000013 ON TRANSACTION DATE: 20110714
    APPLICATION ERROR: Record#=0000001720: Table vat_item has no entry for item=100385251 *region=0001* related to store=0000000013Since explicity seems to be a problem with record of item=10038525 on table VAT_ITEM
    I run the following query in RMS
    select *
    from vat_item
    where item = 100385251and it gaves me this results
    ITEM;*VAT_REGION*;ACTIVE_DATE;VAT_TYPE;VAT_CODE;VAT_RATE;CREATE_DATE;CREATE_ID;CREATE_DATETIME;LAST_UPDATE_DATETIME;LAST_UPDATE_ID
    *100385251;1*;20/07/2011;B;0;0;19/07/2011;LBARBOSA;19/07/2011 05:15:19 p.m.;19/07/2011 05:15:19 p.m.;LBARBOSA
    *100385251;1*;19/07/2011;B;1;12;19/07/2011;LBARBOSA;19/07/2011 04:35:37 p.m.;19/07/2011 04:35:37 p.m.;LBARBOSA
    100385251;2;19/07/2011;B;0;0;19/07/2011;LBARBOSA;19/07/2011 04:35:37 p.m.;19/07/2011 04:35:37 p.m.;LBARBOSA
    also I look for data related in RDW database, and some of it appears. Now I don't have no idea what cause the problem, neither its implications. I write you to know if something similar happened to any of you, and If you any idea of it
    Edited by: luisurea on 27-jul-2011 14:46

    luisurea: I'm not sure that the itemfile and vatfile records you indicate are being produced by RETL DWI batch code such as slsildmex.ksh. I assume you're running version 13 of DWI/RDW? What matters to RDW is that every row from the incoming RDWT file which slsildmex.ksh consumes, is output to slsildmdm.txt file, and that every row from slsildmdm.txt file is consumed and properly loaded to RDW target table sls_item_lm_dm table. DWI modules like slsildmex.ksh do have reject processing, for instance if an RMS.ITEM_LOC_SOH/ITEM_LOC record is not found for data in the RDWT file. In that case, the batch log and error (rfx/log and rfx/error) output of the run of slsildmex.ksh should have noted such a reject. I'm wondering if your itemfile and vatfile are artifacts of an RMS batch process such as posupld. If you're doing proper data validation from the RDWT file, to slsildmdm.txt file, to SLS_ITEM_LM_DM table in RDW, and the F_SLS_AMT (i.e. retail value) facts match how you have RMS/ReSA configured, then your sales integration to RDW is fine... and thsoe files might be more related to RMS sales uploading. Hope that helps,
    Dan

  • Is the Sales Order Item User Status available in user exit MV45AFZZ

    Hello,
    Does anyone know if a sales order line item user status is available within user exit MV45AFZZ (USEREXIT_SAVE_DOCUMENT)?
    I need to send an email when the status changes from one specific value to another specific value but I don't seem to have access to what the latest value is in this user exit.
    I have found a table XTVSTAT which cntains some user status' but it's not clear which status maps to which line item.
    If anyone has any suggestion please let me know.
    Thanks,
    Ruby

    Hi,
    I do need to access the values as I need to check for a specific change to the user status from value A to value B.
    I have already tried debugging the user exit and searching through the available variables but the status information doesn't seem to be available.
    I guess I will have to try the output determination route. Can you explain this in a bit more detail please.
    Thanks,
    Ruby

  • Getting an invalid Item error when resizing(maximizing) the form.

    Hi Experts,
                      I have an error when in click sales A/R invoice...i have added some functionality in that as extra...all r working fine but some times when i minimize the window & again maximize(resize) it this error message is being displayed(only after 10-15 clicks).can anybody tell me some suggestions...
    System.Runtime.InteropServices.ComException(oXFFFFF7F9):Item -Invalid
    item[6600-3].form Unique id:'F_173',Item Unique ID:'100000330'
    at SAPbobosCOM.ItemClass.Item(Object Index)
    at SampleProject.clsARInvoice.FormResize(String FormUID,ItemEvent & pVal,Boolean&
    BubbleEvent) in D:\sampleproject
    Here is my coding for resizing the form
      Sub FormResize(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean)
            Try
                Dim objForm As SAPbouiCOM.Form
                Dim objCopyFromBtn As Object
                Dim objBtn As SAPbouiCOM.Button
                objForm = objSBO_Application_ARINV.Forms.ActiveForm
                Select Case pVal.Before_Action
                    Case False
                        If addFlag = True And bCMFlag = False And bBGFlag = False And bOAFlag = False And bCHFlag = False Then
                   "<----In this line the error occurs------------------>"
                            objCopyFromBtn = objForm.Items.Item("10000330")
                   "<----In this line the error occurs------------------>"
                            objForm.Freeze(True)
                            objForm.Items.Item("btnSaleQtn").Left = objCopyFromBtn.left - 5 - 200 '- 275
                            objForm.Items.Item("btnSaleQtn").Top = objCopyFromBtn.Top
                            objForm.Items.Item("txtQtnNo").Left = objForm.Items.Item("btnSaleQtn").Left - 5 - 100 '- 275
                            objForm.Items.Item("txtQtnNo").Top = objCopyFromBtn.Top
                            objForm.Items.Item("lblQtnNo").Left = objForm.Items.Item("txtQtnNo").Left - 5 - 100 '- 275
                            objForm.Items.Item("lblQtnNo").Top = objCopyFromBtn.Top
                            objForm.Freeze(False)
                        End If
                        bCMFlag = False
                        bBGFlag = False
                        bOAFlag = False
                        bCHFlag = False
                End Select
            Catch ex As Exception
                objSBO_Application_ARINV.MessageBox(ex.ToString)
            End Try
        End Sub
    regards,
    shangai.

    okey. catch the Form_resize event for Form 133 (A/R invoice) and inside it, call FormResize procedure .
    If pVal.FormType = "133" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_RESIZE And pVal.Before_Action = True Then
                    Try
                        FormResize(pVal.FormType, pVal.EventType, pVal.FormTypeCount, BubbleEvent)
                    Catch ex As Exception
                        MsgBox(ex.Message)
                    End Try
                End If
    you will  have to modify the procedure's receiving arguments accordingly.
    within this procedure, as I mentioned before,
    Sub FormResize(ByVal FormType As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByVal FormTypeCount As Integer, ByRef BubbleEvent As Boolean)
            Try
                Dim objForm As SAPbouiCOM.Form
                Dim objCopyFromBtn As Object
                Dim objBtn As SAPbouiCOM.Button
    objForm = objSBO_Application_ARINV.Forms.GetForm(FormType, FormTypeCount)
                '---------rest of the code
            Catch ex As Exception
            End Try
        End Sub
    GetFormByTypeAndCount is Deprecated so to be on safe side , use 'GetForm'. it does the same thing .
    try this.
    regards,
    Binita
    for your question about Count of the form, in SAP we can have multiple instance of standard forms and in that case, to uniquely identify each instance, it is better to refer to that form by not just its type but also with its count. so if you open three A/R invoice Form, you will have three form with Type 133 but with different count.
    Edited by: Binita  Joshi on Aug 22, 2008 8:57 AM

  • Error At Essbase Startup: Fatal Error: Invalid item index in security file

    Hi
    I'm newbie in ESSbase
    A Essbase startup, i got this message: Fatal Error: Invalid item index in security file
    I do a copy a the Essabse.bak to Essbase.sec and get the same message.
    Need some help : it's a Production Application
    Thanks in advance

    Please try to restart Essbase once do rename Essbase.bak to Essbase.sec and check now

  • How to fix the error "Invalid Item ID /index.xml The item you are ....?

    Hi:
    I'm working with collaboration at NW2004 EP 6 SP19. When using some pre-defined pages I get the following error:
    Invalid Item ID
    /index.xml
    The item you are attempting to access does not exist. Check whether the name of the associated repository is correct.
    If I duplicate an existing default template everything works fine, but when customizing I get the error when I execute it from the room.
    Thanks a lot for your time on this thread.
    Regards,
    Rocío.

    Hello experts,
    I have the same error with SAP standard iview announcements.
    How did you fixed it?
    Regards
    Wiebke

  • Invalid item ID error

    Hi everybody,
    we are using EP 6.40 SP 15.
    Since a few days I am no longer able to change an iView within the PCD which is based on a collaboration room template created by my own.
    When I am trying to preview the iView I get the following error display (in a gray box)
    Invalid Item ID
    /index.xml
    The item you are attempting to access does not exist. Check whether the name of the associated repository is correct.
    This problem is not specific to one special iView but all iViews created by using any template.
    Any ideas or hints which help me to track the problem are welcome…
    Roland

    Hello experts,
    I have the same error with SAP standard iview announcements.
    How did you fixed it?
    Regards
    Wiebke

  • Invalid Item in Form Load Event

    Hello,
    i have a problem to access items in Form Load Event. If I use a form created with screen painter and I want to set some values to items (EditText, Grid, ComboBox) in FormLoad event. I get a message "invalid item". Same if I use the event FormActivate. Is it a bug? And if yes, when do you fix it?
    Best regards,
    Alexander

    Hi Alex,
    I haven't try the code, but I think there are just one things to try.
    I think, is convenient to use the FormUID params to retrive the form instead the use of Forms.GetForm() method.
    Please try this one and let us know the result.
    Private Sub moSBOApplication_ItemEvent( _
                            ByVal FormUID As String, _
                            ByRef pVal As SAPbouiCOM.ItemEvent, _
                            ByRef BubbleEvent As Boolean) Handles sboApplication.ItemEvent
        Try
            If Not (pVal.FormTypeEx = "frmPlan") Then Exit Sub
            Select Case pVal.EventType
                Case BoEventTypes.et_FORM_LOAD
                    If pVal.BeforeAction = True Then Exit Sub
                    oForm = sboApplication.Forms.Item(FormUID) ' try this one
                    oForm.EnableMenu("1288", True)
                    oForm.EnableMenu("1289", True)
                    oForm.EnableMenu("1290", True)
                    oForm.EnableMenu("1291", True)
                    initGridAD(oForm)
                Case BoEventTypes.et_FORM_ACTIVATE
                    If pVal.BeforeAction = True Then Exit Sub
                    oForm = sboApplication.Forms.Item(FormUID) ' try this one
                    initGridAD(oForm)
            End Select
        Catch ex As Exception
            sboApplication.SetStatusBarMessage(ex.ToString(), BoMessageTime.bmt_Short, True)
        End Try
    End Sub
    Private Sub initGridAD(ByVal oForm As Form)
        Dim oGrid As Grid = oForm.Items.Item("gridAD").Specific  ' *here I'm gettig an error*
        Dim oDataTable As SAPbouiCOM.DataTable = oForm.DataSources.DataTables.Item("DTgridAD")
        If not oDataTable.Rows.Count = 0 Then Exit Function
        oGrid.DataTable.ExecuteQuery("Select '' as 'Choose', SlpCode as Code, SlpName as 'Name' From OSLP")
        oGrid.Columns.Item("Choose").Type = BoGridColumnType.gct_CheckBox
    End Sub
    Is this code hosted in a module or in a class?
    If is in a class, how many instancens of class exist when you get the error?
    Hope this helps.
    Carmine

  • Invalid item [66000-3]

    I have an add-on that gets the 'Invalid item [66000-3]' error on a UDF in one database but not on another. When we compare the field in the two databases they appear the same both through SQL Management and the B1 > Tools > Customization.  We just upgraded from 8.8 PL5 to PL7. Any ideas?

    Hi Tim....
    I would suggest you to please recreate this UDF and try to do the same excercise as you get  error?
    Try doin this in test DB by taking its backup and restoring with some other name. If it is successfull then do upload this UDF's stored values again into the table...
    Regards,
    Rahul

  • How to make session invalid when user refresh the page?

    How to make session invalid when user refresh the page?

    I have a <form> in a JSP file that has another JSP file as an action.
    I have main.jsp that has <form> with action.jsp file as an action.
    Now when I submit the <form>, request forwarded to action.jsp and it will take the action. But this file is taking so long, hence user refresh the page again and again, hence duplicate request processing is occuring.
    I want to prevent this.

Maybe you are looking for

  • Time Delay when Initiating BPEL from Oracle ESB

    Hi there, I am currently working with a client who have an on-going integration project. They are using the BPEL and Oracle ESB components of the Oracle SOA Suite 10.1.3.3.1. There is an issue that periodically occurs. The scenario that we are occasi

  • Using EXECUTE IMMEDIATE with Create Table SQL Statement not working

    Hi , I am all the privileges given from the SYSTEM user , but still i am not able to create a table under procedure . Please see these and advice. create or replace procedure sp_dummy as begin Execute Immediate 'Create table Dummy99_99 (Dummy_Field n

  • I can no longer find my apple TV with my iTunes, need to pair them, suggestions?

    Hi, I can no longer find my Apple TV with the new version on iTunes (i'm on OS X) on my computer, I need it so I can pair the Apple TV and iTunes account, any suggestions? Thanks!

  • ORA-01555 error when assigning values based on geometry

    Hello, I have a table with 220,000+ records with street information, and I am trying to assign a municipal area (stored in another table) based on the geometry of the road line and the geometry of the municipal boundary. CREATE TABLE TEMP AS SELECT A

  • Connecting to a Windows Small Business Server

    I have tried several times to connect to our offices Window based Small Business Server with my MacBook Pro without success. Can anyone give me a step by step process for this connection. I am currently running the MBP using Boot Camp, the windows si