Migrating Limesurvey Community to Cloud Solution - migration

I'm using a self-hosted Limesurvey community edition instance. I probably will buy the cloud-hosted solution, so, is there an easy way to migrate the data that exists in the database?
I couldn't find any documentation about it, but if I can't get an easier solution, I will use the LimeSurvey API (remote control) to map the data from the self-hosted version.
Thanks in advance

They have a migration service which is included if you buy a LimeSurvey Cloud Expert plan or higher. Just buy the plan, zip up the files and create a database dump and send it to their support. Usually they migrate it within 24 hours.

Related

quickbooks desktop enterprise integration with mulesoft

I have to build a integration between Mulesoft and QuickBooks Desktop Enterprise edition. How Can the same be done? I know that for QuickBooks Online, as soon as access code is generated, a web service call will do whatever functionality is required. Is the same possible for Desktop enterprise also? If yes, please give some sample. I have to create Bills in QuickBooks enterprise using this integration.
Thanks
It looks like there's a connector for that.

How to migrate security using upgrade management tool in SAP BOBJ?

I am trying to migrate reports from BOBJ 4.1 SP5 Patch 3 from Development to Production using Upgrade management tool.
However after the upgrade is completed, I see that no security for folders or reports is migrated. Is there anything I need to select or the Upgrade management cannot migrate security.
Best way to "migrate" (publish I said) is Central Management Console > Promotion Management. With this option you can choose whatever you select (folders, access levels, universes, connections...)
Is this what you were looking for?
Best regards

How can I create database and web service on azure?

I working on my school project.My project purpose is movie rating application with ionic.When I will present my application on the phone.I need to get data on the internet.So I have to use cloud system for keep in web service and sql database.Oh also I will using sql database.I want to build database and web service on the azure.But its my first time for azure.How can I migrate my sql database to azure and how can I create web service in azure.Im rookie these things.I need a starting point.I searched on the web but cant find a good tutorial :(
If your SQL Database and WebService structure is not a requirement, you can also explore other options such as Mobile Apps. Mobile apps is a workload on Azure specifically built for such scenarios to connect with mobile devices and two way data communication. It uses what is called "Table storage" on Azure. You can start with that and later on move to a no-sql database such as DocumentDB for persistent storage and querying.
You can find a step by step tutorial below on how to create the Mobile apps and connect it to different platform such as Windows Phone, Android or iPhone. The link here is for Android. If you wish to use other platforms you can use the tab to switch to them. It will even give you a sample project that you can download and run directly which can get you started pretty quickly. I also have a blog post around this if you are interested.
https://azure.microsoft.com/en-us/documentation/articles/app-service-mobile-android-get-started/
Hope this helps!

Migration to Windows Azure

In our organization we are using Hyper-V VMs. We are using Progress Database and apps in the workstations.
For us to migrate into the Microsoft Azure cloud, do we have to migrate our existing Progress database to SQL and rewrite our apps ?
No. You haven't given us much detail about your applications or architecture, but if I make the assumption that you are using the embedded database product by Progress software, then I see no reason that can't run on an Azure VM.

MICROSOFT SQL server and windows azure with Mac OS X and Cocoa

So I am currently doing some research for creating iPhone and Mac applications for my company and perhaphs other small businesses. I have found god knows loads and loads of books on cocoa and iOS development, but on the side of SQL server things get a little more shady. I have seen all kinds of products online who claim to be the best SQL driver and to be the simplest and performance enhanced way of adding a relational database to your cocoa app. I have currently been and still create desktop applications under windows and we extensively use our databases for almost all applications and reports we build. We have iPads and iPhone all around our company and I could really bring some innovative apps to our table if we could have some of our workflows or reports on the iPhone or iPad. I cannot seem to find a viable SQL driver like using visual studio under widows. Is there a obvious solution that I have missed or do developers just not deal with enterprise projects with relational databases? We as a company have the capabilities to create what ever web or server needed to get such a project underway but before I do I want to make sure I can work with our existing database as I could with visual studio, any ideas or suggestions are welcomed.
I guess this is one of reasons why is there sooo little enterprise-class software on Macs... As a first candidate I would consider FreeTDS to access SQL Servers. It has headers and libraries that can be linked in XCode as far as I know.
As you mentioned in your post and comments, you do have great design in your mind. For having an application to compatible with any mobile device, the best application design would be to have your application running on as cloud service connected to specific cloud DB while application is talking to it over any exposed interface.
With Windows Azure your application can run as Cloud Service while using SQL database. In your cloud service you can have WCF endpoint exposed which can serve connection to your SQL Database and provide specific data you are looking for. This way your cloud application will be able to serve any mobile device as long as you can make connection to secure WCF endpoint and get back the data. In WCF you not only get XML data, you can pass much more complex results and process in the device as if needed.