Hello:
I'm trying to import a simple test csv file into a test SQL table. Following are the parameters I'm working with:
- SQL Server 2000 tables
- Working within SQL Server Management Studio
- Trying to schedule a job to run daily
- I'm new to using the job scheduler
Following is my script for a step within the the job. It's at this point in the process, where I get the error message.
BULKINSERT NewSchedule_TblFROM'F:\folder1\folder2\CSV_ScheduleTbl_Export.csv'WITH( FIELDTERMINATOR =',', ROWTERMINATOR='0x0A') GO
I'm getting the following error message:
Message
Executed asuser: ORG\username. Invalid object name 'NewSchedule_Tbl'.[SQLSTATE 42S02](Error 208). The step failed.
The full name of the table is:
ORG\username.NewSchedule_Tbl
I've tried the following syntax - and gotten error messages on all attempts:
- ORG\username.NewSchedule_Tbl
- username.NewSchedule_Tbl
- NewSchedule_Tbl
Any suggestions would be very helpful.
Thanks Much:
Pavilion