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 5 years ago.
Improve this question
I need to make a webservice that take three arguments(DataTable dt, string connectionString, string table) to integrate the datas in dt to the given database.[table], but not the same schema.
How can I sort this out please?
if an employee's datas changed in HR database automatically FD system
must notified to refresh his database
Consider looking at SQL Server Replication (or) AlwaysOn feature for this same purpose. Specifically you should look at Transactional Replication
Related
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 7 years ago.
Improve this question
I want share data between two application in c#. I have done it using IPC and text file read and write.But I want two share data rather than it.
You can use:
Local DB and connect both applications to it
Shared file
Net pipe to connect applications (search NetNamedPipeBinding and DuplexChannelFactory)
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 am developing an asp.net Website which is connected with SQL database, SQL database has two columns START_DATE and END_DATE, so I want if END_DATE is greater than START_DATE then it send a mail automatically even when the website is not in use..
Thanks in Advance..
Two possible paths:
Create a job in your SQL server to monitor the table and send emails when you want.
Create a windows service which queries the table every so often to see if an email needs to be sent.
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 8 years ago.
Improve this question
I'm trying to write a code in C# which lists all the Database in a specific IP Address but I don't know where to start. Please help!!!
I think I got the answer. I just need to open the postgres database which is created by default when you create a database instance and do this query.
SELECT datname FROM pg_database
WHERE datistemplate = false;
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 8 years ago.
Improve this question
I have a database schema. How do I construct a family tree using asp.NET, C# and SQL server? Also, how can I show you the database schema?
I suggest you take a look at Family Show, a WPF application which enables you to view and/or edit a family tree. I think that with some tweaking you will be able to make it work against SQL Server using your database schema.
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 8 years ago.
Improve this question
i have build up a application in c# for my client.During the testing of the application the client inserts data for testing and whenever i reinstall the updated software the data inserted by the client is replaced by new database.so how can i not replace that database.
everytime you install the application,you can backup the data into file,and then restore it.