Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
3answers
26k views

What is the string length of a Guid?

I want to create a varchar folumn in SQL should contain N'guid' while guid is a generated Guid by .net (Guid.NewGuid). What is the length of the varchar I should expect from a Guid? is it a static ...
33
votes
3answers
22k views

Using varchar(MAX) vs TEXT on SQL Server

I just read that the VARCHAR(MAX) datatype (which can store close to 2GB of char data) is the recommended replacement for the TEXT datatype in SQL Server 2005+. If I want to search inside a column ...
6
votes
2answers
3k views

SQL Server, nvarchar(MAX) or ntext, image or varbinary?

When should I choose one or the other? What are the implications regarding space and (full-text) indexing? BTW: I'm currently using SQL Server 2005 planing to upgrade to 2008 in the following months. ...
5
votes
2answers
221 views

PL/SQL for implode function on custom types

Is there any way to create an implode routine in PL/SQL that takes any custom datatype as a parameter and concatenates its members, delimited by some specified string? For example, say I've got the ...
4
votes
2answers
2k views

pl/sql object types “ORA-06530: Reference to uninitialized composite” error

i have a type as follows: CREATE OR REPLACE TYPE tbusiness_inter_item_bag AS OBJECT ( item_id NUMBER, system_event_cd VARCHAR2 (20), CONSTRUCTOR FUNCTION ...
3
votes
2answers
324 views

Number of args for stored procedure PLS-00306

I have problem with calling for my procedure. Oracle scrams PLS-00306 Error: Wrong number of types of arguments in call to procedure. With my type declaration procedure has exact the same ...
3
votes
3answers
2k views

datetime vs smalldatetime

If I don't care about less than seconds, what should be the recommended type to store my datetime values in sql-server 2005, is it datetime or smalldatetime or else?
2
votes
1answer
252 views

Implementing new NHibernate type for POINT postgresql data type (or any COLUMN of a non-primitive analogous nhibernate type)

I have a problem with NHibernate and the postgresql POINT data type (although I believe this is a common problem for all of those trying to map a SQL TYPE that is not covered by NHibernate SqlTypes). ...
2
votes
1answer
312 views

SQLBulkCopy can't convert Time to DateTime

I am writing a small utility to copy a database from a proprietary ODBC database into a SQL Server database. Everything is working great, except when I use SQLBulkCopy to copy over the data. It ...
1
vote
1answer
15 views

Set decimal(16, 3) for a column in Code First Approach in EF4.3

How can I do this : private decimal _SnachCount; [Required] [DataType("decimal(16 ,3")] public decimal SnachCount { get { return _SnachCount; } set { _SnachCount = value; } } private ...
1
vote
1answer
795 views

fluent nhibernate problem mapping char(1) type

The map. public SocialCodeMap() { Id(x => x.SocialCodeId); Map(x => x.Name); Map(x => x.Code); Map(x => x.DisplayOrder); } And the Class. ...
0
votes
1answer
27 views

New type in PL/SQL

I need to store create a new type for rational numbers represented as numerator/denominator for storing fractions like 3/5. I found the following to do it. CREATE TYPE Rational AS OBJECT ( num ...
0
votes
1answer
135 views

Oracle SQL and PL/SQL : how to minimize execution time of retrieving members of the object (returned by user's function)

I wrote a function to get a number of values in an Oracle view. As functions can't return more then one value, I have used an object (with a signature of 8 numbers). This works, but not fine... The ...
0
votes
2answers
146 views

confusion about using types instead of gtts in oracle

I am trying to convert queries like below to types so that I won't have to use GTT: insert into my_gtt_table_1 (house, lname, fname, MI, fullname, dob) (select house, lname, fname, MI, fullname, dob ...
0
votes
2answers
438 views

oracle collection not enough values

I did following: create or replace type my_row as object ( lname varchar2(30), fname varchar2(30), MI char(1), hohSSN char (9), hohname VARCHAR2(63), hohDob ...
0
votes
3answers
202 views

A list of all the SQL types and their .NET mapping?

I need a list of all the SQL types and their .NET (vb would be preferred, but C# also works for me) equivalent.