Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Fastload logon shows as invalid but I can log on to Teradata SQL Assistant with the same credentials

Status
Not open for further replies.

btrini

Programmer
Nov 3, 2003
13
0
0
US
Hi, I built a SQL script which I am calling at the Fastload DOS prompt however I am getting an error message that my UserID, Password or Account is Invalid.

I am using the same User Id and Password I use to logon on to Teradata SQL Assistant.

Is there another setting I need to change to get Fastload to work?

Below is a sample of what my lines of code look like.

SESSIONS 16;
ERRLIMIT 9000;
LOGON DB/UID,PW;

Thank you for any help.

-Brian-
 
Isn't it ".LOGON"? With a dot?

Code:
SESSIONS 16;
ERRLIMIT 9000;
.LOGON DB/UID,PW;

.LOGOFF;
.QUIT;


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top