Top "User-defined-types" questions

User-Defined Type (UDT) is a type that customize by user.

ASMX Web Service - Return user defined class with properties

Hey, I am trying to return a user defined class from a web method. The class has properties and/or …

asp.net web-services asmx user-defined-types
How do I map from Oracle UDTs with ODP.NET without using OracleObjectMappingAttribute?

The data access layer in our application is going to be using the UDT functionality of Oracle. We will only …

c# .net oracle odp.net user-defined-types
Invalid binding for Oracle UDT in procedure parameter

I'm attempting to call a procedure that takes a custom data type of table of numbers as one of the …

c# odp.net oracle-xe user-defined-types
Concatenating collections in PLSQL

I need to collect a lot of ids from a couple of different tables into a variable of some sort …

sql oracle plsql user-defined-types
SQL Server create User-Defined Table Types with schema not working properly

I'm creating User-Defined Table Types on SQL Server 2008R2/2012 with this statement: CREATE TYPE [MySchemaName].[MyUserTableType] As Table ( [Id] varchar(20) …

sql sql-server schema user-defined-types
How to use a data type (table) defined in another database in SQL2k8?

I have a Table Type defined in a database. It is used as a table-valued parameter in a stored procedure. …

sql-server-2008 user-defined-types
Dapper: Help me run stored procedure with multiple user defined table types

I have a stored procedure with 3 input paramaters. ... PROCEDURE [dbo].[gama_SearchLibraryDocuments] @Keyword nvarchar(160), @CategoryIds [dbo].[IntList] READONLY, @MarketIds [dbo].[…

c# sql stored-procedures dapper user-defined-types
C++ min heap with user-defined type

I am trying to implement a min heap in c++ for a struct type that I created. I created a …

c++ stl struct user-defined-types min-heap
How to query a field in a user defined type in a set using CQL (Cassandra)

I am using the User Defined Types in CQL 3.1 (cqlsh info below): [cqlsh 5.0.1 | Cassandra 2.1.2 | CQL spec 3.2.0 | Native protocol v3] I …

cassandra set cql user-defined-types
How to make a function that take user defined table type as parameter and return same in sql?

Actually I have created a User defined table type in sql server 2008. Structure is given below. I am passing it …

sql sql-server sql-server-2008 function user-defined-types