Question:
Sql Server Database Connectivity?
Pravin .
2009-12-21 22:58:41 UTC
We are using Sql Server database as our project back end and VB 2008 as Front End. Now we want to deploy this project to client side. But we dont want to install Sql server at client side. So how can we access Sql Server database without Installing Sql Server ( Like MS ACCESS MDB ). We are using Visual basic 2008 for Our Project. WHAT IS Microsoft DTS Service. ???
Four answers:
Nigel
2009-12-22 07:22:52 UTC
Sorry I don't use VB, but usually when you specify the location of your database, you should be able to say what computer the database is on. At that point you will need to specify the name of the machine where your SQL Server database is.

It may be that you currently use localhost, this is where you need to put in your other machines name.
Rajan
2009-12-22 10:12:18 UTC
DTS is a set of tools you can use to import, export, and transform heterogeneous data between one or more data sources, such as Microsoft SQL Server, Microsoft Excel, or Microsoft Access. Connectivity is provided through OLE DB, an open-standard for data access. ODBC (Open Database Connectivity) data sources are supported through the OLE DB Provider for ODBC.



You create a DTS solution as one or more packages. Each package may contain an organized set of tasks that define work to be performed, transformations on data and objects, workflow constraints that define task execution, and connections to data sources and destinations. DTS packages also provide services, such as logging package execution details, controlling transactions, and handling global variables.



These tools are available for creating and executing DTS packages:



The Import/Export Wizard is for building relatively simple DTS packages, and supports data migration and simple transformations.



The DTS Designer graphically implements the DTS object model, allowing you to create DTS packages with a wide range of functionality.



DTSRun is a command-prompt utility used to execute existing DTS packages.



DTSRunUI is a graphical interface to DTSRun, which also allows the passing of global variables and the generation of command lines.



SQLAgent is not a DTS application; however, it is used by DTS to schedule package execution.



Using the DTS object model, you also can create and run packages programmatically, build custom tasks, and build custom transformations.
JoelKatz
2009-12-22 07:06:55 UTC
You want SQL Server Express, which is a free version of Microsoft SQL Server that you can embed in your product.
Amol R
2009-12-22 07:36:30 UTC
Microsoft DTS Service is used for data transfer like you can export or import data from xls to db or vise verse


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Continue reading on narkive:
Loading...