Posts by hikoruKazuto • 43 points
5 posts
-
0
votes1
answer57
viewsA: Is it possible to know which program ran some SQL command and the table related to the command?
Solution found, with option to perform grouping by transaction type. SELECT objectName, begintime, endtime, account, LOP_INSERT_ROWS [Insert], LOP_MODIFY_ROW [Update], LOP_DELETE_ROWS [Delete],…
sql-serveranswered hikoruKazuto 43 -
1
votes1
answer57
viewsQ: Is it possible to know which program ran some SQL command and the table related to the command?
How to make a query that returns the history of the executed command type (UPDATE, INSERT, DELETE), the date, the name of the program you executed (Program_name), and the table that has been…
sql-serverasked hikoruKazuto 43 -
0
votes1
answer29
viewsQ: Search for minor in log(n)
Hello. I am in need of an efficient data structure to search for the lowest value of a disordered vector, being that: The vector cannot be ordered. The vector should be able to update the values in…
casked hikoruKazuto 43 -
0
votes2
answers76
viewsA: Simplification of boolean function
I arrived in another reply: F(x,y,w,z) = (!w * ! z) + (y * (!z + ! w));
-
2
votes1
answer1222
viewsQ: How to enable/disable windows 7 devices through a . bat or other file type?
I need to enable and disable a specific device (device manager) frequently, and doing it manually is very annoying. I believe that with a . bat file it is possible to enable/disable each time I run.…