Represents a set of data types that can be used with SQL.

learn more… | top users | synonyms

0
votes
1answer
11 views

using AES_ENCRYPT with VARCHAR in mysql

I am using AES_ENCRYPT() and AES_DECRYPT() for encription and decription of mysql data. Things are working fine no matter if I use VARCHAR() or VARBINARY() but this is just for small amount of data I ...
0
votes
1answer
18 views

MySQL Data Type to Store Negative Number

I have a rating system that ranges from -1 to 5 through 0. So i need to store the following values -1 0 1 2 3 4 5 Which is the best data type considering i want to fetch a total count of each ...
0
votes
1answer
23 views

postgres change data type of view column from unkown to text

I just create a new view as follows CREATE OR REPLACE VIEW gettreelistvw AS SELECT "CRM".groupid, 'pointrewarding'::text AS applicationid, "CM".menuid, "CM".menuname, "CM".levelstructure, ...
0
votes
2answers
39 views

How can I store date only in datetime field in WebMatrix with Sql Server CE?

I was wondering if there was a way to store a date (example: 01/01/2013) as datetime without SQL Server CE adding the time (example: 12:00:00 AM). I could always store it as the string "01/01/2013" ...
3
votes
2answers
52 views

Oracle equivalent of Java's Varargs

I'm trying to create a PL/SQL Procedure which can handle an unknown, but relatively small, number of Strings/Varchar2s as a parameter. The equivalent in Java could be to use Varargs: public void ...
0
votes
1answer
21 views

Persist Text SQL Type via ORMLite (not LONGVARCHAR)

Using DataType.LONG_STRING attribute value Persisted as SQL type LONGVARCHAR which handles longer strings. However, i want to map the field to SQL type TEXT . @DatabaseField(dataType = ...
2
votes
3answers
59 views

Which data type to use to store fractions? [closed]

I have some values like 3/5, 90/100 etc. I have to store these values in separate columns in my database. I am confused as to which datatype to use for this purpose; which is faster for insert and ...
-2
votes
0answers
26 views

Function that Converts SQLDataType into .Net Type [closed]

Do you have any code for this function? Function GetNetType(sqltype As SqlDataType) as Type 'code End Function A function that converts a sqldatatype into (String,Int,Int64,TimeSpan). Can ...
4
votes
2answers
51 views

Getting wrong result when using bigint in sql query

I have passed below AmountDue in query but am getting wrong result. AmountDue data type is Float. AmountDue: 2412880.28 AmountDue: 561.06 My query: select CONVERT(varchar,(select ...
0
votes
0answers
29 views

ORACLE vs SQL Server from text data type point of view

These days I am facing a problem related to text datatype differences between Oracle and SQL Server. More exactly I am comparing a concatenation of chars from Oracle with a varchar column from SQL ...
1
vote
2answers
49 views

Execute store procedure with spring

When I try to execute store procedure with spring the this exception is thrown: Caused by: org.springframework.jdbc.UncategorizedSQLException: CallableStatementCallback; uncategorized ...
-2
votes
0answers
23 views

Working with mysql float data type [closed]

I have a serious problem when trying adding something like 10,000.50 into database from user form. when I check the data to the table, it doesn't read as I inserted (10,000.50) why? any idea please
1
vote
1answer
49 views

How do I query a columns data type in access 2003?

I am looking for a way to get the data type of a column given the table that it is in and the name of the column. I have seen other answers refer to the MSysIMEXColumns table but my Access database ...
0
votes
1answer
33 views

mysql function, how to refer to table field datatype

in MYSQL i have a myfield column in mytable table which has let's say a varchar(8) data type CREATE TABLE mytable ( id INT NOT NULL, myfield VARCHAR( 8 )) in a function or procedure ...
1
vote
0answers
66 views

Best MySQL data type to store lat/long

I have seen several answers but none seem to work ... I need to know the best MySQL data type to store a lat / lon value. An example lon value returned from the API: -75.2408658 Currently, I have ...
0
votes
1answer
21 views

SQL Factorial ErlangC

I am trying to use this factorial in an ErlangC Function.. However my number of Agents can get up to the 300s. With this you can get pretty large numbers. For example. My question is how do I store ...
2
votes
2answers
94 views

Android - Save location in SQLite database

I have problem with save latitude and longitude in SQLite database. I can save some location like (123.123999, 123.123999) and it will save in the database. But if I want to read it, I get rounded ...
0
votes
2answers
68 views

What is the return datatype for the function TZ_OFFSET in oracle?

What is the return datatype for the function TZ_OFFSET in oracle ?? Eg, select tz_offset(DBTIMEZONE) from dual; -04:00
0
votes
1answer
38 views

Issues with ODBC Drivers formatting date fields incorrectly

I have been having problems with using mulitple ODBC connections with different drivers to linked tables. When I use the ODBC driver 'SQL Native Client 10.0' the dates format correctly (For Example, ...
0
votes
0answers
53 views

Select query with NCHAR() data type

I am using SQL Server 2008 R2 and I have two tables: Test_Table1 and Test_Table2. The fields are defined as follows: Test_Table1 (CustItemNo: nchar(25), Descr: nchar(60)) and Test_Table2 (Item_No: ...
0
votes
3answers
31 views

MySQL Fieldtype for long numbers

If I set a field in MySQL table as INT so the number I store in it would remove all zero's. For example, if I have an Id like this 100007431431552 finally it would be saved as 17431431552. The field ...
0
votes
1answer
63 views

Time Data Type - MySQL

I need to assign date & time to a record when the record is created , ( the time of creation ) I tried to use this statement but every time I recieve an error message : 'OrderDate' DATE DEFAULT ...
1
vote
2answers
68 views

DBI/DBD::mysql/mysql_type_name: How to distinguish between Blob and Text?

This example outputs two times "blob". How could I find out, if the datatype of a column is TEXT? #!/usr/bin/env perl use warnings; use strict; use DBI; use Data::Dumper; my$dbh = DBI->connect( ...
1
vote
1answer
44 views

Data type LVARCHAR corruption after recovering data

I face the following problem : I deleted a key in a table (wrongly) and then I recovered the whole table through this way: LOAD FROM 'C:\db\rqrequesttrans.dat' delimiter '~' insert into ...
0
votes
0answers
33 views

Money Type is 8 bytes but Decimal(19,x) is 9 bytes. Why? [duplicate]

We are in the middle of change all our money fields from Money to Decimal(17,2). According to MSDN money is 8-bytes and decimal (19,x) needs 9 bytes I was just curious why there would be a 1-byte ...
0
votes
1answer
56 views

Primary key as text [closed]

In the databases course that I did during my education (approx. 4 years ago), I thought that it is recommended avoiding the use of character strings as primary key's data type. Can someone tell me ...
0
votes
1answer
26 views

implement mapping for MySQL year type in django

There is a year data type in MySQL and there is no corresponding data field type in django ORM. Can I provide a custom field class to map data type for one specific RDBMS? If so, how can I do that?
0
votes
1answer
98 views

JPA mapping an java.io.File or java.nio.file.Path object to a STRING column

assume the following Entity: @Entity public class MyEntity { @Id private Long id; private File path; private String someString; } which I want to map to such a table: CREATE ...
0
votes
1answer
73 views

How to implement an interval datatype in SQL Server

I wish to store the length of time a task should take to be completed. In Oracle, I would use an Interval datatype for this. Is the best method for implementing this functionality in SQL Server? ...
0
votes
3answers
298 views

Get the Max Length of a column in Entity Framework

When I import a Database to my EDMX Model I get the following information regards to the Max Length In the image above, I have String column with the Max Length of 250 Is there a way to check ...
1
vote
2answers
65 views

sql database - numeric or string datatype

I have a principle question regarding definition of a code in a relational database. Let's assume (case 1) we have a code, for example, nationality code: 1 2 ... 23 ... 125 ... What is the ...
3
votes
1answer
61 views

SQLAlchemy: How to conditionally choose type for column by depending on its backend

I want to use HSTORE type for a column if it uses PostgreSQL as its backend, or PickleType otherwise. The problem is that we cannot determine which backend will be used when schema is being defined ...
2
votes
1answer
47 views

Multiple input types for a UDT

I don t know if what i want to do is possible or not, and im just curious I've got a User Defined Type of say MyType which is a TINYINT along with a RULE which states that the value permissable must ...
0
votes
1answer
96 views

Page Split caused by update to Binary(128) Column

I have a table with a Binary(128) column. I chose Binary(128) over Varbinary(128) so it would reserve all 128 bytes and prevent page splits when updating the binary value. For testing purposes I have ...
1
vote
2answers
123 views

SQL Server table ID approachs to max length

I have code first MVC 4 application with SQL Server 2008. One of my tables is used much, so, many data stored on it in every day and after some time I delete old data. That is why, element's ID ...
0
votes
2answers
48 views

Proper setting of data type of columns in sql server

I know this is a noob question and I can't find any answer on google, but I want the opinions and suggestions of expert here in sql in terms of setting the data type of columns. Is it okay if I set ...
0
votes
1answer
116 views

Extract Hex String from varbinary to File [duplicate]

this is pretty much a noob question but i can't find a solution. I'm using a SQL Server Database. In one table a column has the DataType varbinary(max). The values for this column are shown a hex ...
0
votes
0answers
253 views

MySQL Stored Procedure input parameter data type significance

Interesting question came up today in modifying some stored procedures. CREATE PROCEDURE someprocedure( IN eventTime VARCHAR(19) ) Where the eventTime input parameter will be inserted into a ...
1
vote
1answer
277 views

SQL Server 2008 Time DataType Classic ASP

I am storing a check-in time and a check-out time in a table in SQL Server 2008. When I store the time it shows correctly: 16:00:00 for example. However when I pull this out of the database and bind ...
0
votes
1answer
55 views

Will specifying data type as MEDIUMTEXT, occupy more space even if data is less

I have a MEDIUMTEXT column type in mysql. Doubt is -> Since all TEXT types are not stored withing the table, so specifying any column as MEDIUMTEXT would occupy 16 MB or will it depend on the size ...
0
votes
0answers
20 views

ADO.NET Entity Framework is there a reason to make the ID column of type long

I'm working on new project using ADO.NET EF and I've noticed that for the ID columns is used long. I think I've read somewhere that this is on purpose but I can't find articles on this topic anymore ...
0
votes
1answer
75 views

MySQL longblob error “packet bigger than max…”

I'm trying to import a Wordpress Plugin database that stores files in the table using the longblob datatype. The database is on one server, so I exported it to import on another server, but have ...
0
votes
2answers
49 views

What is the data type to use for a description?

I would like to know what data type I need to use for a description. example: Baseball cap by adidas Originals - Made from cotton - Embroidered brand logo to the front - Five panel styling - ...
0
votes
1answer
61 views

SQL Server 2005 Data Types - Struggling to get views working with current data types

I am in the middle of creating a new database for mobile phones. It includes a lot of information regarding mobile phones, sim cards etc. I am struggling to get the information in the tables converted ...
1
vote
2answers
86 views

Mysql return array with right data types

I have a database table client which contains a field id INT(6) (with a primary key and auto increment). I select the last id using: $findClient = mysql_query("SELECT `id` FROM `client` ORDER BY `id` ...
2
votes
1answer
122 views

Row size overhead

I have a MS SQL Server 2008 database on a shared hosting and I need to reduce the used storage space as much as possible. My largest table has the following definition: CREATE TABLE [stage]( ...
0
votes
6answers
133 views

MySQL SET Type in PostgreSQL?

I'm trying to use MySQL SET type in PostgreSQL, but I found only Arrays, that has quite similar functionality but doesn't met requirements. Does PostgreSQL has similar datatype?
0
votes
1answer
211 views

Change NTEXT Data Type to Fit More Data

One of my coworkers is using SQL Server 2000 and is having a display issue where an XML column using data type ntext is displaying <Long Text>. I'm guessing that's because the character length ...
0
votes
1answer
149 views

Access: Comparing Memo fields - Not In

Good morning! I am seeking guidance on an issue I have been stuck on since last week, but hopefully there is an easy solution. As you know, you cannot directly link/join memo fields in MS Access. I ...
2
votes
1answer
53 views

Failed to Enable Constraints Errors after moving Database and Driver

I am moving a fairly large system over to a new server and new MySQL database. The system has been running for a few years on MySQL using ODBC data drivers, I am now using MySQL drivers and have ...

1 2 3 4 5 6