batch jobs

S

sqlnovice

If I have to run C# application through batch process, do I need to create
app in Windows or Console. This batch job runs everyday at a particular time
and loads the data into the database. What is the best methods to schedule
in the unix batch job in this situation using C# app
 
X

xcal

hi sqlnovice,

I don't understand what does "unix batch job" mean.
You could do it perhaps, by creating a windows service,
Another way, is to try Sheduled Tasks, but I have never seen
anything like this in the past.

hope this helps, Carlos.
 
A

Arne Vajhøj

sqlnovice said:
If I have to run C# application through batch process, do I need to create
app in Windows or Console. This batch job runs everyday at a particular time
and loads the data into the database. What is the best methods to schedule
in the unix batch job in this situation using C# app

A C# program is run in a batch job the same way as it is run
interactive.

Exactly how you define the job depends on what "batch system" you
are using.

Arne
 
A

Arne Vajhøj

Peter said:
If you're running on Unix, you're not using .NET.

If you're using non-Silverlight .NET, then you're running on Windows.

He could be using Mono.

It is rare, but it does happen.

Arne
 
A

Arne Vajhøj

Peter said:
Given how far behind .NET Mono lags, I don't consider the two the same.

But yes, for some definitions of ".NET", you could say you're running
.NET on a Unix computer. Just not the definition I'm using.

He did not mention anything about .NET in the post only about C#.

Mono C# is definitely C#.

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top