3
I need to create a Stored Procedure in my SQL Server database. The purpose of this Stored Procedure is to record data in a Log table, which has three fields: date, time, ID of who logged in.
Date and time would be the time of login, while the Login ID comes from a table of logins. The site will already have the time to call this Stored Procedure at login.
The big question is what code I put in the Stored Procedure, since I hardly work with it in SQL Server. Who can help in this?
Are you having trouble creating one or calling in the application? Here’s a nice tutorial on how to create. http://imasters.com.br/artigo/223/sql-server/criacao-e-uso-de-stored-procedures
– Marconi
To create even. In the application, a way has been made to call the stored.
– Gustavo Hoppe Levin
Got it, the tutorial I gave you helps a lot. It’s worth a study in it.
– Marconi