Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I need to export some tables of netsuite to mssql. How can i get the table structure and will insert that data to mssql . I need to use this data for my analytics tool. Can anybody help me on this ?
If you have purchased the SuiteAnalytics Connect bundle from NetSuite, you can download and install their ODBC driver on your SQL server. Then you can create a linked server directly to your NetSuite instance.
The schema for the views that are exposed via the ODBC driver can be found in the NetSuite help under the topic SuiteAnalytics -> SunteAnalytics Connect -> Connect Schema.
We have a set of stored procedures that run nightly downloading our data into SQL server using this feature.
We purchased the SuiteAnalytics Connect add-on module for this purpose and got ODBC connection access to our data. It's not cheap, but it does provide pretty good access. You can do it via SuiteTalk / RESTlets, but you'll have to build your own, unless someone else on here has or knows of something pre-built/written to download data that way.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 11 months ago.
Improve this question
I've created a multiple user application in WinForm and it have a database on the server which is on the other computer. So far, i set up the server database (MySql) manually and create each tables in the database manually as well. I was wondering is there a way to create (maybe an exe file) to automate the entire process?
I've did some searching on the internet but most of the answer i get are the configuration of the database which i've go through it when i did the manual set up. I developed the application and the database separately so what is related to the database in my application are the connection string only. i did managed to publish the application and now i need to find a way to publish my server database.
With mysql you cannot automate the install of the mysql software, unless you have a paid for enterprise licence or you release your software as open source under GPL.
To automate mysql installation, you can use mysql installer console.
What you can definitely automate is the deployment of your mysql data structure and the configuration of the mysql instance.
The former requires an sql script that creates the database and all other database objects (tables, indedes, views, users, etc) that you can execute as part of an install process. The latter requires overwriting or adding your settings to my.cnf / my.ini configuration files.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I have simple application design it by C# (windows form application) and the database is Microsoft Access, it work with multi users.
We have Share Drive in our PC ,I put the application and database on the share drive.
How can I protect the application and the database from the users until they do not delete or open it?
MS Access is designed to be slightly better then storing this stuff in Excel Tables, but not so good it will ruin the MS Business with SQL Server. If anything, it is about getting you "hooked on" using Databases.
I think this project plainly went past the scale that Access can support. You need to go to a proper Database Server to go any further - user rights included. SQL Server Express and MySQL should both be avalible and free of charge. And of course there are tons of other Options.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I want to create an android app for a project using visual studios(C#). The app is based on a computer system that uses mySQL for the database. Is it possible to collect data from the database and send it to the app and vice versa, if so please help. If not, what should I do.
The program saves sport fixtures and results to a mySQL database. I know it is not possible to link mySQL DB with Firebase, but there should be a way to collect the the info needed.
Maybe you can (I assume you are using xamarin to develop android app) by downloading dll or driver to connect to mysql server but this practice is very discouraged. Ask anyone and they will told you to use webservice to bridge your app and database. But if you really really want to connect directly to your mysql database, you can use this nuget package.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am new to IBM DB2. Got a job to migrate data from DB2 to SQL Server. Able to connect DB2 database with IBM DB2 client via command prompt. We have already migrated Oracle data to SQL server with ASP.NET SQL Bulk Copy in C#. Need to migrate DB2 data on regular basis based on daily updates. Need details on how to run DB2 sql queries in any editor just like SQL plus for Oracle or Management Studio for SQL Server. Also need information on how to sync DB2 data with Bulk Copy in C#. Thank you in advance for the answers!
2 ways I currently do this are by using an ODBC connection to the db2 db and then:
1) set up a linked server so that queries can be directly run against db2. The downside is that moving large tables is pretty slow.
2) use SSIS to move the data. These can be created directly from SQL server for simple imports and for anything requiring more complicated coding such as cleaning up the data along the way (I have to remove lots of white space char fields), I use Visual Studio to create the SSIS packages.
Both methods can be set up as jobs and run automaticaly.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I have email application. Currently I store all the emails of all email accounts in SQL Server. I have 60 tables. After every 20 minutes, all emails are stored in XML file. To storing in XML is for offline purpose.
Offline: if there is no database connection, it brings all data from XML and stores in DataSet (60 tables). I use this DataSet to perform all offline operations like read mail or check mail etc.
This mechanism takes so much memory if there are thousands of emails in XML file. I think it takes so much memory because of DataSet. I don't dispose DataSet because all the data are stored in it and it use for operation in offline.
Can anybody suggest me mechanism for above situation?
You can use SQL Server Compact Edition to store mails locally. You'll be able to use the same queries to access data.
This is a client based SQL Server which keeps tables in a file. You don't install a SQL server to the client, you will only reference to the System.Data.SqlServerCe.dll library and will use SqlServerCe specific connection object to access the data.
Microsoft download page is here: https://www.microsoft.com/en-us/download/details.aspx?id=30709