Assume that I have created a employees table which has 10 records. How to create a stored procedure to export all the records into the log file.
Latest Answer: use TableLocks or RowLocks to prevent the other user from modifying the data when the previous user is using the same data. ...
Latest Answer: select * from information_schema.tables- Dheeraj ...
I have a table in sql server with two fields named 'start_time' and 'stop_time'. both fields have datatype set as 'datetime'. now I want to subtract the 'start_time' from 'stop_time'? I have tried datediff() fuction,but no use. I want the correct outpput of date as well as time . Need help as early as possible.
Latest Answer: Stored procedures,views,tables,database diagrams are the data objects ...
View page << Previous 2 3 4 5 [6]

Go Top