473,387 Members | 3,801 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Technical question?

I have an application using sqlserver.
I want to send my data from this database to another database(again
sqlserver) in my site.
how can I send this data to my database on my site??

thanks in advance.
Nov 17 '05 #1
11 2053
Would this require copying actual tables or selecting the contents of a
table on db and inserting into the contents of another db?

"perspolis" <re*****@hotmail.com> wrote in message
news:ez**************@TK2MSFTNGP12.phx.gbl...
I have an application using sqlserver.
I want to send my data from this database to another database(again
sqlserver) in my site.
how can I send this data to my database on my site??

thanks in advance.

Nov 17 '05 #2
hi,

You need to provide us with more details, is this a one time operation?
would it be complete tables or just a few rows to get both dbs sync.ed

btw, this is a C# group, this question is more relevant to a SQL group

cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation


"perspolis" <re*****@hotmail.com> wrote in message
news:ez**************@TK2MSFTNGP12.phx.gbl...
I have an application using sqlserver.
I want to send my data from this database to another database(again
sqlserver) in my site.
how can I send this data to my database on my site??

thanks in advance.

Nov 17 '05 #3
yeah,I want to select content of one table and insert into another table
"Ian Frawley" <ye**@yeah.com> wrote in message
news:Oa**************@TK2MSFTNGP14.phx.gbl...
Would this require copying actual tables or selecting the contents of a
table on db and inserting into the contents of another db?

"perspolis" <re*****@hotmail.com> wrote in message
news:ez**************@TK2MSFTNGP12.phx.gbl...
I have an application using sqlserver.
I want to send my data from this database to another database(again
sqlserver) in my site.
how can I send this data to my database on my site??

thanks in advance.


Nov 17 '05 #4
it ' some selected rows,.I'm wondering using SqlDataAdapter directly or
using WebService???
"Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us> wrote
in message news:e%****************@TK2MSFTNGP12.phx.gbl...
hi,

You need to provide us with more details, is this a one time operation?
would it be complete tables or just a few rows to get both dbs sync.ed

btw, this is a C# group, this question is more relevant to a SQL group

cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation


"perspolis" <re*****@hotmail.com> wrote in message
news:ez**************@TK2MSFTNGP12.phx.gbl...
I have an application using sqlserver.
I want to send my data from this database to another database(again
sqlserver) in my site.
how can I send this data to my database on my site??

thanks in advance.


Nov 17 '05 #5
If both db's are on the same SQL Server then right a stored procedure to
copy the rows you want copied. You can refer to the objects like so:

db_name.db_owner.table_name.column_name

--

Derek Davis
dd******@gmail.com

"perspolis" <re*****@hotmail.com> wrote in message
news:ez**************@TK2MSFTNGP12.phx.gbl...
I have an application using sqlserver.
I want to send my data from this database to another database(again
sqlserver) in my site.
how can I send this data to my database on my site??

thanks in advance.

Nov 17 '05 #6
perspolis wrote:
I have an application using sqlserver.
I want to send my data from this database to another database(again
sqlserver) in my site.
how can I send this data to my database on my site??

thanks in advance.

Why don't you just create a procedure that inserts the data into the
other schema and then create a job that moves the data. No fuss, no
muss. Make the database work for you.
Nov 17 '05 #7
both my databases are located in diffrent location.
I don't want to conntect to other database directly..
Can I use a WebService to transfer data from my application to my website??

"Sargon" <Ri***********@verizon.net> wrote in message
news:0KF2f.13819$wm3.12990@trnddc01...
perspolis wrote:
I have an application using sqlserver.
I want to send my data from this database to another database(again
sqlserver) in my site.
how can I send this data to my database on my site??

thanks in advance.

Why don't you just create a procedure that inserts the data into the other
schema and then create a job that moves the data. No fuss, no muss. Make
the database work for you.

Nov 17 '05 #8
"perspolis" <re*****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
both my databases are located in diffrent location.
I don't want to conntect to other database directly..
Can I use a WebService to transfer data from my application to my
website??


You could, but unless there's a reason you can't connect directly, I'd say a
DTS package or something would be much simpler!
Nov 17 '05 #9
Persopolis

Are you able to correct your time or localisation setting before you next
time sent a message to these newsgroups.

Thanks in advance.

Cor
Nov 17 '05 #10
If I connect directly I think it's a security problem.isn't it?
"Danny Tuppeny" <gr****@dannytuppeny.commmmmm> wrote in message
news:43***********************@ptn-nntp-reader02.plus.net...
"perspolis" <re*****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
both my databases are located in diffrent location.
I don't want to conntect to other database directly..
Can I use a WebService to transfer data from my application to my
website??


You could, but unless there's a reason you can't connect directly, I'd say
a DTS package or something would be much simpler!

Nov 17 '05 #11
You can create a web service to transfer the data from one table to another
but u can also try and use the sql replication option which will do the same
but will save u alot of hard work
"Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us> wrote
in message news:e%****************@TK2MSFTNGP12.phx.gbl...
hi,

You need to provide us with more details, is this a one time operation?
would it be complete tables or just a few rows to get both dbs sync.ed

btw, this is a C# group, this question is more relevant to a SQL group

cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation


"perspolis" <re*****@hotmail.com> wrote in message
news:ez**************@TK2MSFTNGP12.phx.gbl...
I have an application using sqlserver.
I want to send my data from this database to another database(again
sqlserver) in my site.
how can I send this data to my database on my site??

thanks in advance.


Nov 17 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: David Winter | last post by:
As a technical author and translator, I am highly interested in single source/multi format publishing. Meaning: I'd like to keep manuals, technical specifications etc. in multiple languages...
2
by: Vick | last post by:
Hi Folks, I'm not too sure if this is the appropriate place to ask this question, but I'm trying to figure out what some of the main differences between the following Job roles are on an IT...
2
by: Junpei | last post by:
I need recommendations for a scientific app I'm making, here's what i need, in order of importance 1) Strong/Complete 2d/3d plotting widgets for both data and functions 2) Realtime 2d-plotting 3)...
5
by: shaun.mostashari | last post by:
Hello all, I am working on a trade study and one of the criterias is how easy it is to get DB2 technical support from IBM. I appreciate if you guys share your experience with me. Does DB2 have a...
56
by: Cherrish Vaidiyan | last post by:
Frinds, Hope everyone is doing fine.i feel pointers to be the most toughest part in C. i have just completed learning pointers & arrays related portions. I need to attend technical interview on...
11
by: Geoff Caplan | last post by:
Hi folks, The thread on injection attacks was very instructive, but seemed to run out of steam at an interesting point. Now you guys have kindly educated me about the real nature of the issues,...
22
by: flit | last post by:
Hello All, I have a hard question, every time I look for this answer its get out from the technical domain and goes on in the moral/social domain. First, I live in third world with bad gov., bad...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.