473,385 Members | 1,356 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,385 software developers and data experts.

Automate a procedure

If I want to automate a procedure, in this case, every hour read through my
new applicants that have applied on the web in the least hour and send an
email to them, what is the best way to handle that?

Can it be done with Asp.Net?

Or run a Windows service?

Or some other way?

Thanks,

Tom
Nov 19 '05 #1
8 1241
"tshad" <ts**********@ftsolutions.com> wrote in
news:uw**************@TK2MSFTNGP14.phx.gbl:
If I want to automate a procedure, in this case, every hour read
through my new applicants that have applied on the web in the least
hour and send an email to them, what is the best way to handle that?

Can it be done with Asp.Net?

Or run a Windows service?


Windows service.
Windows scheduler.
SQL Server scheduler.

For your situation I would use either a windows service or schedule an
event in SQL server.

--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 19 '05 #2
"Lucas Tam" <RE********@rogers.com> wrote in message
news:Xn***************************@127.0.0.1...
"tshad" <ts**********@ftsolutions.com> wrote in
news:uw**************@TK2MSFTNGP14.phx.gbl:
If I want to automate a procedure, in this case, every hour read
through my new applicants that have applied on the web in the least
hour and send an email to them, what is the best way to handle that?

Can it be done with Asp.Net?

Or run a Windows service?
Windows service.
Windows scheduler.
SQL Server scheduler.

For your situation I would use either a windows service or schedule an
event in SQL server.


How do you schedule an event in Sql Server?

Can you schedule an event in Sql Server to respond to a request from another
Sql Server on another machine - kind of like responding to a mouseclick in
an application?

Thanks,

Tom
--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/

Nov 19 '05 #3
"tshad" <ts**********@ftsolutions.com> wrote in
news:#1**************@TK2MSFTNGP14.phx.gbl:
Can you schedule an event in Sql Server to respond to a request from
another Sql Server on another machine - kind of like responding to a
mouseclick in an application?


You can use a trigger for responding to events.

However, I believe SQL Server 2005 will have true events - it can even fire
off .NET processes.

To schedule an event, in Enterprise manager, select your SQL Server
registration. Select the Management Folder. Select SQL Server Agent. Select
Jobs.

--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 19 '05 #4

"Lucas Tam" <RE********@rogers.com> wrote in message
news:Xn***************************@127.0.0.1...
"tshad" <ts**********@ftsolutions.com> wrote in
news:#1**************@TK2MSFTNGP14.phx.gbl:
Can you schedule an event in Sql Server to respond to a request from
another Sql Server on another machine - kind of like responding to a
mouseclick in an application?
You can use a trigger for responding to events.

However, I believe SQL Server 2005 will have true events - it can even
fire
off .NET processes.


Is there a good place to read about this?

I would be very interested in this.

Thanks,

Tom
To schedule an event, in Enterprise manager, select your SQL Server
registration. Select the Management Folder. Select SQL Server Agent.
Select
Jobs.

--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/

Nov 19 '05 #5
"tshad" <ts**********@ftsolutions.com> wrote in news:#oqa5BSpFHA.1444
@tk2msftngp13.phx.gbl:
However, I believe SQL Server 2005 will have true events - it can even
fire
off .NET processes.


Is there a good place to read about this?

I would be very interested in this.


Take a look at:

http://www.awprofessional.com/conten...echapter/homer
_ch05.pdf

Under Notification Services.

FYI, SQL Server 2005 will have support for the .NET framework... so you
could always load your own .NET objects to handle custom scenarios : )

--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 19 '05 #6
"tshad" <ts**********@ftsolutions.com> wrote in news:#oqa5BSpFHA.1444
@tk2msftngp13.phx.gbl:
However, I believe SQL Server 2005 will have true events - it can even
fire
off .NET processes.


Is there a good place to read about this?

I would be very interested in this.


BTW, this might be relavant too:

http://www.devx.com/dotnet/Article/21286

Managed (.NET) Stored Procedures

--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 19 '05 #7
"Lucas Tam" <RE********@rogers.com> wrote in message
news:Xn***************************@127.0.0.1...
"tshad" <ts**********@ftsolutions.com> wrote in news:#oqa5BSpFHA.1444
@tk2msftngp13.phx.gbl:
However, I believe SQL Server 2005 will have true events - it can even
fire
off .NET processes.
Is there a good place to read about this?

I would be very interested in this.


Take a look at:

http://www.awprofessional.com/conten...echapter/homer _ch05.pdf

Under Notification Services.

FYI, SQL Server 2005 will have support for the .NET framework... so you
could always load your own .NET objects to handle custom scenarios : )
I thought this was only for sending Emails and Faxes?

Tom
--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/

Nov 19 '05 #8
"tshad" <tf*@dslextreme.com> wrote in news:eLi9enspFHA.2504
@tk2msftngp13.phx.gbl:
Under Notification Services.

FYI, SQL Server 2005 will have support for the .NET framework... so you
could always load your own .NET objects to handle custom scenarios : )


I thought this was only for sending Emails and Faxes?


In SQL Server 2005, you have full access to the .NET framework, so you can
do whatever you like (within reason... since you don't want to bog the
database server down too much).

--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 19 '05 #9

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

Similar topics

6
by: Demetris | last post by:
hello people! I am very new to the SQL World. Currently I work on DB2 and ORACLE and this is a new "fruit" for me. I have the task to automate the following scenario: - backup database A -...
11
by: David Lozzi | last post by:
Hello, I need to automate importation of a excel file into a table. Here's my scenario: I'm writing an ASP.NET application where users can pull reports on imported data. The imported data is...
5
by: MLH | last post by:
None of my applications' many forms have actions defined for the Form_Close event. I would lke to automate the addition of the following procedure to all my forms in their Close Event property...
9
by: Ots | last post by:
I'm using SQL 2000, which is integrated with a VB.NET 2003 app. I have an Audit trigger that logs changes to tables. I want to apply this trigger to many different tables. It's the same trigger,...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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
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...

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.