What is an extended stored procedure? Can you instantiate a
COM object by using T-SQL?
Answer Posted / swapna
An extended stored procedure is a function within a DLL
(written in a programming language like C, C++ using Open
Data Services (ODS) API) that can be called from T-SQL,
just the way we call normal stored procedures using the
EXEC statement.
Yes, you can instantiate a COM (written in languages like
VB, VC++) object from T-SQL by using sp_OACreate stored
procedure.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain error handling in ssis?
Explain about protocol layer present in SQL server?
What are the advantages of using third-party tools?
what is a traditional network library for sql servers? : Sql server database administration
What do you mean by recursive stored procedure?
Tell me time data type, datetime2, datetimeoffset data type in sql server 2008?
What are the benefits of normalization?
What is user-defined scalar function?
How can sql server instances be hidden? : sql server security
This question asked during interview, 2) At the end of each month, a new table is created for each bank that contains monthly metrics consolidated at the account level. The table naming convention is bankX_YYYYMM where X represents the numeric designation of the bank and YYYYMM indicates the 4 digit year and 2 digit month. The tables contain the following fields: name data type description account text account number registered boolean indicates whether the account is registered num_trans integer number of transactions made during the time period spend numeric(9,2) total spend during the time period a) Write a SQL query that will display the total number of transactions and total spend for "Bank1" during the 4th quarter of 2009. b) Write a SQL query that will display the total number of transactions and total spend at "Bank1" and "Bank2", broken out by registered vs. non-registered accounts, during January 2010 not sure what is correct answer and how to solve?
What is linked report?
Why transaction is important?
Explain the database you used in your final year project?
How to manipulate data from one table to another table ?
What are the instances when triggers are appropriate?