Where is the database of "server side" sync items?

Server 10.5.6 clients 10.5.5
Problem: Server side file tracking for Mobile Home sync is on. Files are not syncing reliably. Desktop items don't make it back to the network home and other similar issues. The clients get several errors stating that there was a problem syncing one file or another and to contact the admin if it continues.
Turn off Server side tracking. Files sync runs as one would expect, all files sync correctly with no errors.
We use two off site subnets connected via site to site VPN. Sync now takes 10 minutes at those locations.
Turn Server side tracking back on, assuming it might recreate the database automatically. Problems come back.
Needed: How to delete the current presumably corrupt database on the server so that we can run server side tracking again?
Thanks
-Erich

See
http://lists.apple.com/archives/Client-management/2008/Nov/msg00075.html
As well, you might wish to hold off on updating your clients to 10.5.6 if you can, some have reported PHD syncing reliability issues.

Similar Messages

  • Hi where is the database link previously under windows menu?

    Hi where is the database link previously under windows menu

    Removed feature: Server Behavior, Bindings and Components Panels and Database feature
    There is a single extension to restore these features. Extension is available at:* Vista/Windows 7: C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC\Configuration\DisabledFeatures* Mac OS X: /Applications/Adobe Dreamweaver CC/Configuration/DisabledFeatures
    As seen on http://blogs.adobe.com/dreamweaver/2013/06/a-look-at-the-modernized-dreamweaver-cc.html
    Video instructions on how to install these back available here: http://www.youtube.com/watch?v=cB2vmNfcq7A

  • Copy & paste the images in server side folder

    Hi ,
    I want to copy & paste the images in server side folder .
    Have you any idea than please send me.
    Thanks.
    Have a nice day

    [http://java.sun.com/docs/books/tutorial/essential/io/].

  • Where is the database panel in Dreamweaver CC?  Was this feature removed?

    Where is the database panel in Dreamweaver CC?  Was this feature removed?
    Mike

    At the link I posted above.
    There is a single extension to restore these features. Extension is available at:
    Vista/Windows 7: C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC\Configuration\DisabledFeatures
    Mac OS X: /Applications/Adobe Dreamweaver CC/Configuration/DisabledFeatures
    To install, follow instructions in the video
    http://www.youtube.com/watch?v=cB2vmNfcq7A
    Nancy O.

  • Log the local variables (string type) to the database (SQL Server)

    i have a customized PreUUT callback so that my own VI gets the information from barcode. it contains serial number as well as other information. i am collecting the information into local variables of the PreUUT callback.
    Now i want to log the local variables (string type) to the database (SQL Server).
    i have a successful connection to the database and i am using a generic recordset schema.
    can anyone help me how to do it?
    also shall i have to create the corrosponding fields (columns) in the database? or is there any option in TestStand4.0 to do it?

    Hello i like original,
    After re-reading your original message, I think I might have a better understanding of what you would like to do.  I have included a few links to Knowledge Base and Developer Zone articles that should be very useful for you.  I have included these links below:
    Logging a New UUT Property to a Database in TestStand
    Logging a New Step Property to a Database in TestStand
    Creating a TestStand Database Schema from Scratch
    Thanks,
    Jonathan C
    Staff Application Engineering Specialist | CTD | CLA
    National Instruments

  • Where is the Oracle VM Server for SPARC 3.2 SW download?

    Where is the Oracle VM Server for SPARC 3.2 SW download?
    Tips leading to a successful download of the correct SW may be rewarded with German beer.

    Many thanks for your answer.
    Can you point me toward something, which I can show our customer indicating when 3.2 will be GA for Solaris 10?

  • Where do the videos go when i sync my phone? The ones i take with my phone

    Where do the videos go when i sync my phone? The ones i take with my phone?
    im looking for them on my PC not the phone btw
    thanks for any help
    Message was edited by: jakobstone

    They don't sync with iTunes. You access them from another application on your computer. For me, I use Photoshop Elements to get pictures and videos off my iPhone when it's synced. Mac users can use iPhoto to do the same thing.
    Also, on the PC you can drill down into the iPhone folder structure from your Explorer window and copy/paste the videos onto your PC.
    Message was edited by: dmiannay

  • Where is the option to set a ToDo item to repeat? ...

    I imported some calendar entries from MS Outlook onto my 5800, of which most were set to repeat every month.
    Those items successfully repeat on the device but on creating a new ToDo item using the device's calendar app, there is no option to set repeating occurrence!
    Where is the option to set a ToDo item to repeat?
    Can anyone please help me with this as I do not want to have to keep re-creating items and / or using Outlook to create them then transfer etc.
    'Ta very much.

    Just found an alternative that I thought was possible but wanted to confirm.
    Set yourself up a Nokia account on www.ovi.com and set up an OVI Sync account. Sync the phone to the online account to start with.
    Then, using the online interface to OVI Sync you can create an event that can be repeated weekly among other things. Re-sync the phone and that repeating event will be entered into your calendar.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Oracle Database Mobile Server 11 sync

    Hi,
    I have two simple tables in the back-end oracle database in order to create a meeting-room android application with and embebbed SQLite database on the client devices. I have written all the functionality to register, authenticate, create a new appointent, show it, and delete it and it works fine on my smartphone, but I did all these steps against the local sqlite db.
    Now I would like to share the reserves info with all the clients by synchronization using Oracle Database Mobile Server 11.
    Tables:
    Employees(ID, username, password, firstname, lastname, phone, email)
    Reserves(ID, subject, firstname, lastname, start_date, end_date, meeting_room, alarm)
    I have configured all the publications required (app , item, users, grants...) with the Workbench tool, like i have read from the official documentation and i added the lines to invoke the sync functionality. My problem is that when i launch the first sync the sqlite database in created on the device but the few records on the back-end are not replicated in the sqlite db. ¿is this process automatic or have I to write some code to catch this info?
    Another problem is that the records of the sqlite database is neither replicated to the back-end database. I have to say that th sync process ends succesfully but I can see nothing on the in-queue and out-queue queues in the mobile manager console. So, what´s about this incomind and outcoming data? Th only thing i can see is a set of dirty records, these records are records on the back-end db, but I dont know what means...
    Could you help me please?
    Thank you very much.

    Hi
    Data Subsetting is to restrict the data each Client sees based on values you specify i.e.
    If you only wanted a Client to see data for a specific Dept you could specify the following in the Publication Item
    Select * from emp where DEPTNO = :DEPTNO
    You can define what DEPTNO should be for each Client in the Mobile Server
    So in your case if you want ALL Client to see ALL records for a Publication Item then you should not specify any Data Subsetting i.e.
    Select * from emp - This would retrieve all rows
    There is no specific need to use Sequences in your Application unless you want to. Obviously you must make sure that any new records created on the Client will not conflict with a record created on a different Client otherwise conflicts will occur after the data is synchronized with the server
    With regards to you actual issue can you confirm the following ( NO NOT CHANGE ANY VALUES )
    1. Check the table mobileadmin.applications in the Repository DB and confirm there is a row there for your Application and that the 'Publication' column contains the correct Publication you created in MDW.
    2. Check the Table C$ALL_CLIENT_ITEMS, this should contain one row for each Publication Item you created in MDW i.e.
    Select PUBLICATION_ITEM, DIRTY, CRR From C$ALL_CLIENT_ITEMS Where CLIENTID = '<Your Client Name>';
    regards
    Richard

  • Where is the Oracle Application Server for Apex 3.2.1?

    Hi, I feel ashamed asking this, but I want to know where to download the Application Server for Apex 3.2.1. Apex is installed in a DataBase 10gR1 and the O.S. where I will install the Application Server is RedHat
    I think it is here
    http://www.oracle.com/technetwork/middleware/ias/downloads/index.html
    But there is a lot of links and things to download and I don't even know if it will work because it is Release 3 and the DataBase is Release 1, but I tried downloading the "Oracle 10gR3 Companion (10.1.3.x) CD", but after running the installer in the disk1, I found that the Oracle HTTP Server that it would install does not include mod_plsql and I know I need it.
    So, which one should I download, or where can I find it?
    Thanks.

    Hi,
    Hi, I feel ashamed asking this, but I want to know where to download the Application Server for Apex 3.2.1. Apex is installed in a DataBase 10gR1 and the O.S. where I will install the Application Server is RedHatI think it is here
    http://www.oracle.com/technetwork/middleware/ias/downloads/index.html
    But there is a lot of links and things to download and I don't even know if it will work because it is Release 3 and the DataBase is Release 1, but I tried downloading the "Oracle 10gR3 Companion (10.1.3.x) CD", but after running the installer in the disk1, I found that the Oracle HTTP Server that it would install does not include mod_plsql and I know I need it.
    So, which one should I download, or where can I find it?>
    Strictly speaking you do not need Application Server or OHS for running Apex, you have an option in ApexListener. If it is a small installation then stick to EPG that comes built-in.
    Try downloading the Oracle HTTP Server from here . You will need to check the commercial aspects yourself as OHS is not a free software for Production environment, AFAIK.
    Cheers,

  • Where is the database connection for a mobile site?

    I have a Flash mobile site that I didn't create, but need to edit. On clicking the submit button it checks that the login & password are in a SQL database. The problem is, I can't find the method that runs a query on the database or where the database is even connected. I've tried searching through the code for words like "SQL", "database", and "connection" without success. I stepped through the code where I find a call to method "super", but then it goes back to the original method and then the user is logged in. Can someone explain where the call to the database is?
    Other things I'd like to know are: Where is the SQL Connection? In the main (non-mobile site), there is a web.config with a line that says
    <add name="TPConnectionString1"  connectionString="DataSource=xxx.xx.xxx.xx,xxxx\sqlexpress;Initial Catalog=TP;Persist Security  Info=True;User ID=xxxxx" providerName="System.Data.SqlClient"/>
    Where (what file: ex. web.config, xyz.as, etc.) would a similar line in the mobile code be?
    What does super(type, bubbles, cancelable) do?
    Here's the method for the submit button: LoginView.mxml
            private function btnclicked():void{  techController.username = txtUsername.text;  techController.password = txtPassword.text;  var evt:TechEvent = new TechEvent(TechEvent.LOGIN_USER);  this.dispatchEvent(evt);  }
    Here's the TechEvent function that is called: TechEvent.as
        public function TechEvent(type: String, bubbles:Boolean=true, cancelable:Boolean=false)  {  super(type, bubbles, cancelable);  }
    Here's the dispatchEvent method: UIComponent.as
    override public function dispatchEvent(event:Event):Boolean  {  if (dispatchEventHook != null)  dispatchEventHook(event, this);    return super.dispatchEvent(event);  }

    You are looking for an event handler for the TechEvent.LOGIN_USER event.
    Coding style looks similar to a SWIZ style framework, in which case, the event handlers could be defined using metadata [EventHandler] or [Mediate] tags, but could just be a plain simple .addEventListener(TectEvent.LOGIN_USER,fn); declaration earlier on.
    Either way, this is what has happened:
    1. User enters uname and password, then clicks button
    2. Button click handler populates the techController with relevant values then dispatches an event to let the world know it has done so
    3. The event handler checks the techController and makes the login call
    4. Some time later, the server will respond and trigger another event that the app can respond to
    G

  • [Tabular] Only an admin for the database (not server) -- can I push changes?

    I recently created a PowerPivot workbook that got pushed out to my enterprise's tabular server. And while our current IT policies keep me from being able to be an SSAS Administrator, I
    did get included in the Admin role for the database itself (not the server.) And that's where I'm a little lost.
    The database permissions for the Admin role are set for Full control, Process database, and Read. And yes, I can read and process the database. But is it possible for me to make any changes to the model itself? The only way I could think of to make changes
    was to suck the model back down into Visual Studio, edit, and redeploy. But it looks like deploying requires being an Admin of the
    server to push the metadata.
    I'd love to know if I'm understanding things correctly.
    Thanks so much,
    Henson
    **EDIT** Looking at this page, it seems that all you can really do on a database level is delete it or change the properties, not the model itself: http://msdn.microsoft.com/en-us/library/ms175596.aspx

    Hi Techhenson,
    According to your description, you want to know if you can change the SQL Server Analysis Services tabular model as a database administrator, right?
    I have tested it on my local environemnt, as a database administrator, we can change the tabular model properties in SQL Server Management Studio (SSMS). If we need to change the structure of the tabular model, we need to create a Import Project to import
    the model on SQL Server Data Tolls (SSDT), and then modify the model and redeploy it to the server.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Where is the Database Initialization Parameter file (inti.ora ??) located ?

    I have E-Business Suite R12 installed on Windows XP.
    I want to change utl_file_dir path.
    I know that I have to change the Database Initialization Parameter file (inti.ora ??)
    Does anybody know, where is the file located ?
    When I search I am getting two files. (init.ora and init.ora.txt)
    Which file I need to make the changes in ???
    Thanks in advance

    The initialization file for the database is located in the $ORACLE_HOME/dbs directory, and is called init<SID>.ora

  • Save the page in server side

    Hi all,
    I have some iViews in my page. That iViews are draggable like as in iGoogle. Now what i want is if i change the position of the iView , after refreshing the iView should be in the same position(what i have changed) . The page should be save in cookies or server side like igoogle.
    The URL of the iGoogle
    [iGoogle|http://www.google.com/ig]
    How can i achieve this using script?
    Help me in this regard.
    Thanks & Regards,
    Hemalatha

    Hi,
    When ever an Iview is dropped to a new position, you will have to reflect this position change in pcd.
    An idea would be to use AJAX and call a portal service where logic is implemented to change Iview position in pcd. You can implement this in personalized context of user, so that the change is made only for current user.
    PCDAPI Remove iView from Page
    Regards,
    Praveen Gudapati

  • Ms SqlServer connection: where is the database?

    I'm connecting to MS SQL 2000 with a user that is owner of the database i want to convert into oracle. The connection is OK, but when i connect i cannot see the database and its tables. The same if i connect with user "sa".
    Can anybody help me?

    Hi,
    I'm not sure where the problem is, I think it is more how SQL Server is implemented, whenever we look for tables they always appear under the 'dbo' schema regardless of who created them. All that JDeveloper does is query the Database metadata.
    Regards,
    Lisa

Maybe you are looking for

  • LaserJet Pro 200 color mfp m276 Printing issues

    I have had this printer for about a year now.  Now it has started printing solid black lines across the page I am printing, whether it be from my computer or a fax.  I can run the cleaning process from the printer and its fine for a few hours and the

  • I have a folder yahoo conversation that opens and won't let me open anything else. I do not even have a yahoo account

    A folder Y conversation showed up under each account.I right clicked on it and selected delete. It won't delete.It is now open and won't close. When I exit out Thunderbird closes.When I reopen thunderbird that file opens.

  • Creation of cost element

    Hi, I set up my discount received account as a cost element. This was a BIG mistake now i cant pay any of my vendors, how do i proceed, i cant delete the cost element plzzz help

  • Planning Layout for Statistical Key

    Hello. Good Morning. Does anybody know how to enter the field Transaction Currency as a variable in a planning layout for Statistical Key? Please kindly answer me. Thank you very much. Best Regards, Antonio

  • CCA and PCA retraction in Integrated Planning

    Hi all, Please I need some orientation about CCA an PCA retraction when you are using Integrated planning. I read blogs about CCA retraction (made by Praveen Mayalur) and was very helpfull, but it only refers a planning scenario using BW-BPS, and I d