Hi All
Function - : Lists all the user defined stored procedures.
SELECT Name FROM SYSOBJECTS
WHERE (TYPE = 'P') AND (OBJECTPROPERTY(OBJECT_ID(Name), 'IsMSShipped') = 0)
ORDER BY Name
Function - : Lists all the user defined Tables.
SELECT Name FROM SYSOBJECTS
WHERE...
Hi All
I am getting some problem related to Automation. I have created a dll in which i am opening an instance of excel and importing a data from an excel file and then calling a stored procedure for updating the database. so whenever I am creating a instance of my component in my ASP Page .I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.