Is there a way to find what stored procedures create an entry in a table. Say for example: Stored Procedure A inserts into Table A
Helo, I have a stored procedure that has 7 IN parameters and 3 OUT parameters. I need to pass 7 parameters IN from PHP, execute the query with procedure, and retrieve the 3 OUT parameters.
I have to update some DataTable for which I am sending the data as XML. My stored procedure has transaction to abort the operation if something goes wrong. But the number of records I have to update i
I read a book on SQLServer 2008. Within this book the author stated that although stored procedures are mostly the solution, you should avoid using them all the time.
I have a stored procedure which combines values from 2 tables. This is the stored procedure: ALTER PROCEDURE dbo.SplitTime
I have an enum as below: [Flags] public enum AggregationLevel { /// <summary> /// 00000001 /// </summary>
Hi I\'m working开发者_JS百科 with sql server 2008 and I\'ve a table with following columns eid,empname,sal etc.. and I\'ve 1000 stored procedures based on this table.
This question already has an answer here: Closed 11 years ago. Possible Duplicate: can I access a remote mysql server/db from a stored procedure?
I\'am very new to .net and all Microsoft developer technologies. I\'am working on a CLR project. I just want to store a string and it\'s hash in the database (MS SQL Server). I created a stored proced
Can I temporarily disable a trigger in an oracle stored procedure? example (pseudocode): MyProcedure{ disable MyTrigger;