SQL server scheduler.

Hi,

I just want to know if a file can be uploaded in SQL server database in some table using some sort of schduler(No Frontend) and than data to be analysed and put in some specific tables.

I am new to SQl server. if some one can guide me to a link where I can understand how SQl server works. I know about oracle this is possible but now sure about SQL server.

 

Cheers,

Rakesh




Answer this question

SQL server scheduler.

  • Perro

    Information may be loaded into SQL Server table by using BCP utility (such as SQL* Loader in Oracle suite iirc) or - if you need complex analysis, lookups, distributing data in different tables etc. - by creating Integration Services package defining these tasks and executing it by schedule or manually. You may find info about SSIS here:

    http://msdn.microsoft.com/sql/bi/integration/

    WBR, Evergray
    --
    Words mean nothing...


  • SQL server scheduler.