sql - Exec with .. (Double dot) -


i need fetch data database need use query old in-house software.

i have trouble understanding query , know fetch data from.

i working vb , below goes oledbcommand. however, looks me sql understanding...

the query:

exec securid..securidfindernew  '" & accountchecker_searchbar.text & "', '', '', '', '', '', '', '', '' " 

how query work , how can know table , db in that? there db called "securid" there no table / view called "securidfindernew" in it.

i want able list columns name , create normal query it.

p.s.:somehow, connection string not connect "securid" db guess .. go 1 step backward. if that's case, should see "securidfindernew" when list tables in "securid" not.

been trying figure out hours can't find on google. foung information on ".." can't make work.

thanks help.

exec (or execute) used call stored procedure. in script you've provided, executing securid..securidfindernew stored procedure.

this qualified name of stored procedure ([database].[schema].[object]), database name being securid, schema being default (hence ..), , procedure being securidfindernew.

if in securid database ssms, , drill programmability , stored procedures, should find procedure listed there.

as rest of script you've provided, these parameters procedure accepts.

i'm not sure mean "i want able list columns name , create normal query it." if want change procedure does, you'll need modify (alter) securidfindernew procedure.


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -