I have a report that uses a stored procedure called sp_sample_one.
The report was created with the reference to this stored procedure
In the asp page I make references
crtable.SetLogonInfo "TestDB", "TestDB", cstr(userid), cstr(password)
crtable.Location = Cstr("sp_sample_one"
works fine
now I made an exact copy of sp_sample_one and called it sp_sample_two
In the asp page I did ....
crtable.SetLogonInfo "TestDB", "TestDB", cstr(userid), cstr(password)
crtable.Location = Cstr("sp_sample_two"
but I get the following error in the smartviewer
Error Occurred Reading Records: Error detected by database DLL
The only thing that changed is the reference to the stored procedure name
Thanks
The report was created with the reference to this stored procedure
In the asp page I make references
crtable.SetLogonInfo "TestDB", "TestDB", cstr(userid), cstr(password)
crtable.Location = Cstr("sp_sample_one"
works fine
now I made an exact copy of sp_sample_one and called it sp_sample_two
In the asp page I did ....
crtable.SetLogonInfo "TestDB", "TestDB", cstr(userid), cstr(password)
crtable.Location = Cstr("sp_sample_two"
but I get the following error in the smartviewer
Error Occurred Reading Records: Error detected by database DLL
The only thing that changed is the reference to the stored procedure name
Thanks