Tagged Questions
The sqldatatypes tag has no wiki summary.
69
votes
4answers
73k views
SQL Server Text type vs. varchar data type
I have variable length character data and want to store in SQL Server (2005) database. I want to learn some best practices about how to choose TEXT SQL type or choose VARCHAR SQL type, pros and cons ...
8
votes
2answers
5k views
SQL Server: Appropriate datatype for holding percent values?
What is the best datatype for holding percent values ranging from 0.00% to 100.00%?
7
votes
3answers
137 views
Converting Varchar to NVarchar?
I know when converting from nvarchar to varchar, some data will be lost/changed.
However, are there any risks of data changing when converting a varchar data type to an nvarchar?
6
votes
3answers
2k views
What's the difference between MySQL BOOL and BOOLEAN column data types?
I'm using MySQL 5.1.49-1ubuntu8.1.
And it allows me to define columns of two different data types: BOOL and BOOLEAN.
I want to understand the difference.
6
votes
2answers
274 views
Varchar columns: Nullable or not
The database development standards in our organization state the varchar fields should not allow null values. They should have a default value of an empty string (""). I know this makes querying and ...
6
votes
9answers
336 views
Why do I have to set the max length of every single text column in the database?
Why is it that every RDBMS insists that you tell it what the max length of a text field is going to be... why can't it just infer this information form the data that's put into the database?
I've ...
5
votes
2answers
118 views
MySQL retrieve column names where datatype == X
I need to write some code that applies to only certain fields within our database. Specifically I'm looking for any field in all tables of a single database that are of type DECIMAL(12,5);
If it's of ...
4
votes
1answer
45 views
Make MySQL not to convert string to number
I have a query in my application that selects users from a table by ID or by username:
SELECT * FROM users WHERE id = '$x' OR username = '$x'
This is working when given usernames like foo, bar123 ...
4
votes
3answers
139 views
What is the maximum range of varchar in MySQL?
What is the maximum range of varchar in MySQL?
I am using the latest version of MySQL and in many sites it is being told that the size is 255. But when i am trying to give a higher size like 500 or ...
4
votes
6answers
231 views
Where did the datatypes get their name from?
Why is a bit, called a bit. Why is a 8-bits a Byte? What made people call a 16-bits a Word, and so on. Where and why did their alias come about?
I would love other people to include things like basic ...
4
votes
1answer
565 views
Reason to use DECIMAL(31,0)
What is the reason that some people from Oracle background are using DECIMAL(31,0) for integers. In MySQL it is not efficient.
3
votes
3answers
142 views
What's the correct data type I should use in this case?
I have to represent numbers in my database, which are amounts of chemical substances in food, like fats, energy, magnesium and others. These values are decimals in format 12345.67.
If I use decimal ...
3
votes
5answers
34 views
Is it possible to retrieve database values in php as the type defined in the database instead of type string?
If I define a column in a mysql database as type int, my queries always return the values as type string.
Is there a way of retreiving the right type?
3
votes
1answer
80 views
Best practices when working with currencies
I'm working on a desktop application that may potentially be deployed world-wide. My biggest issue with internationalization is currencies. A couple questions:
I'm using SQL Server Compact Edition, ...
3
votes
1answer
84 views
Is there a reason for the inconsistent datatype overflow handling of SQL Server
I would like to know what the reasoning could be for inconsistent way sql server handles type overflowing. And what would be the proper way to prevent the silent data corruption SQL Server inflicts on ...
3
votes
1answer
100 views
What data type should be used with money
I am creating a database table in MySQL Workbench. The table I want to create is to be able to save data which is a number with a decimal point. The data I want to save is a money value which has a ...
3
votes
3answers
546 views
which datatype to use to store a mobile number
Which datatype shall I use to store mobile numbers of 10 digits (Ex.:9932234242). Shall I go for varchar(10) or for the big one- the "bigint".
If the number is of type- '0021-23141231' , then which ...
3
votes
4answers
554 views
SQL Server text, ntext, image data type problem
Microsoft announced that: "ntext, text, and image data types will be removed in a future version of Microsoft SQL Server." And advises to use nvarchar(max), varchar(max), and varbinary(max) instead.
...
3
votes
1answer
679 views
How can I map TIMESTAMP WITH TIME ZONE to a Java data type using Hibernate 3.3.2GA?
How can I map Oracle column types TIMESTAMP WITH TIME ZONE or TIMESTAMP WITH LOCAL TIME ZONE to a Java data type using Hibernate 3.3.2GA? Can I map each of these to a Date or Calendar data type?
3
votes
3answers
305 views
Empty space at the end of SQL Server query results
I just installed Microsoft SQL Server 2008 R2 to test with LINQ to SQL.
I have a table with one column of type nchar(20) and two rows: '123' and 'Test'.
If I query all the rows from that table and ...
3
votes
4answers
378 views
SQL: Is it efficient to use tinyint instead of Integer if my max value is 255?
Lets assume I want to save the count of datagrid rows which can be max. 24 because each row is 1 hour.
To save the row index in the database a tinyint field would be totally enough. But back in my ...
2
votes
3answers
107 views
How to save documents like PDF,Docx,xls in sql server 2008
I develop a web application that let users to upload files like images and documents. this file divided into two parts :
binary files
document files
I want to allow users to search documents that ...
2
votes
1answer
20 views
Datatype in AdventureWorks database
When I looked at the tables in Adventure works, the design of each columns seems a bit strange. Since AdventureWorks shows industrial standards I want to follow it.
In Phone number columns they have ...
2
votes
2answers
42 views
In SQL Server, how do I create a function that returns a text longer than 8,000 characters?
I need to create a function in SQL Server that returns a string. In some cases, this string is longer than 8,000 characters, which is the maximum value for a varchar data type. text, and ntext data ...
2
votes
4answers
74 views
How do you handle Nullable type with SqlDataRecord
I am parsing XML (LINQ to XML) and I am using a nullable type (int? and decimal?) in cases where the element / attribute is empty. However, when building my collection to pass to the DB (Using TVP) I ...
2
votes
1answer
39 views
Can I get types from an arbitrary query in Postrges?
I've got a situation building a data analysis tool where my users can write SQL query (including joins, calculations, etc) and I need to be provide options to the user based on the data types of the ...
2
votes
3answers
145 views
SQL 2008 - varchar(max) vs text data types
from this article, it looks like they both have the same size capacity: http://msdn.microsoft.com/en-us/library/ms143432.aspx
is that truly correct? what are the real differences?
i just migrated ...
2
votes
1answer
176 views
DB2 VARCHAR unicode data storage
We are currently using VARCHAR for storing text data in DB2 however we are hitting the problem that length of VARCHAR specified is not the same as length of text because in DB2 VARCHAR length ...
2
votes
2answers
150 views
SQL Server 2005 - Reaching Table Row Size Limit
Is there a clean way to determine the row size of a table before adding a new column to it and not go over the 8060 byte limit?
For example, if the table row length is currently 8055 bytes, and I ...
2
votes
4answers
134 views
compare decimal values in varchar coloumn
I have a varchar coloumn by name XYZ and the values in that coloumn are like
XYZ
10.2
9.0
97.32
When i write a case statement something like
CASE
WHEN XYZ > '9.0' THEN
'DONE'
WHEN ...
2
votes
3answers
395 views
What is the datatype to store boolean value in MySQL? [closed]
Possible Duplicate:
Which MySQL Datatype to use for storing boolean values?
I am a .NET programmer and using MySQL database for the first time in my life.
I wanted to store boolean value, ...
2
votes
1answer
113 views
Which database implements which Java SQL type?
The java.sql Javadoc defines SQL types in the java.sql.Types class. However, I can't find definitive information describing which type is implemented by which major database player (for me, this ...
2
votes
2answers
563 views
Return BIT constant from SQL Stored Procedure
OK, I'm trying to return a BIT constant from a Stored Procedure.
The only way I've managed to get this to compile is using a cast:
CAST(0 AS BIT) AS MyBool
Is there a more efficient way to write ...
2
votes
2answers
164 views
MySQL: Smallest datatype for one bit
I would like to store a variable into the database which can contain two values. Either one or zero.
What would be the smallest datatype to store the data in MySQL?
A TINYINT(1) can contain numbers ...
2
votes
2answers
424 views
How to create CLR stored procedure with Nvarchar(max) parameter?
Is it possible to create CLR stored procedure in SQL Server CLR project having input parameterof type nvarchar(max)?
If you define stored procedure:
...
2
votes
1answer
276 views
To which Java data types can I map TIMESTAMP WITH TIME ZONE or TIMESTAMP WITH LOCAL TIME ZONE?
To which Java data types can (or should) my application map Oracle column types TIMESTAMP WITH TIME ZONE or TIMESTAMP WITH LOCAL TIME ZONE? Can the Oracle JDBC driver map these types to either Date ...
2
votes
4answers
286 views
Is there an advantage on setting tinyint fields when I know that the value will not exceed 255?
Should I choose the smallest datatype possible, or if I am storing the value 1 for example, it doesn't matter what is the col datatype and the value will occupy the same memory size?
The question is ...
2
votes
1answer
164 views
Sql Equivalent to UInt16
I know that the Sql equivalent of Int16 is SqlInt16.
But what is the Sql equivalent of UInt16, UInt32 and Uint64?
1
vote
2answers
22 views
SQL Server 2005 - DataType of variable to store a RowSet
In a typical stored procedure i am working there are various checks with the same query as below.
SELECT ... FROM Projects WHERE ProjectId IN (SELECT ProjectId FROM Tasks)
i would like to replace ...
1
vote
2answers
35 views
Declare a variable as dbo.Name?
I'm reading an excellent article by Paul White - Dynamic Seeks and Hidden Implicit Conversions! and he uses this code:
DECLARE @Like dbo.Name = N'D%'
I'm trying to find out more about using ...
1
vote
3answers
40 views
SQL Server to .Net type conversions
I have the following map that I use to convert betwen SQL Server types, SQLData types, and .NET types:
/// <summary>
/// The map of types. THis maps all the corresponding types between sql ...
1
vote
3answers
53 views
Using .NET SqlTypes with MySQL
I'm writing an application that reads from a MySQL database and migrates data into a SQL Server database. I've chosen to write this in C# because of it's built in SQL structures and functionality. I ...
1
vote
1answer
9 views
Error in storing values in SQL database table
In my table, there is a column called zipcode whose datatype is int. And when I am storing a zipcode which starts with 0 (for eg. 08872), it is getting stored as 8872.
Can anybody explain me why is ...
1
vote
1answer
27 views
which PDO::PARAM_* to use with a SET() datatype?
I have an array of values, and one of the values is another array (see below). I implode the inner-array so that it becomes v0,v1,vx and I'm inserting it into a column of a mysql database where the ...
1
vote
3answers
51 views
Change datatype varchar to nvarchar in existing SQL Server 2005 database. Any issues?
I need to change column datatypes in a database table from varchar to nvarchar in order to support Chinese characters (currently, the varchar fields that have these characters are only showing ...
1
vote
2answers
84 views
MAX(text) returns Operand data type text is invalid for max operator. in sql server 2008
I use text data type in one of my tables and also I use PIVOT with the query too.
I am unable to use MAX(AttributeValue) where AttributeValue is the type of text. It returns the following error ...
1
vote
1answer
34 views
Can I query MYSQL for a specific datatype?
Can I query a MYSQL database for what tables use a specific datatype?
For example: We are wanting to use CakeDC migrations (For CakePHP) which do not support database specific features such as ...
1
vote
2answers
81 views
Microsoft Access memo datatype to MySQL Datatype
What datatype in MySQL would be best to use for data that was in Memo on Microsoft Access?
1
vote
2answers
41 views
When to use varchar for numeric data in InnoDB MySQL tables
When using MySQL, are there times that it would make sense to use a textual field (varchar, text, etc) instead of a numeric field (int, float, etc.) even if all data to be stored is numeric?
For ...
1
vote
2answers
143 views
Mapping java.long to oracle.Number(14)
I have db column whose datatype is Number (15) and i have the corresponding field in java classes as long. The question is how would i map it using java.sql.Types.
would Types.BIGINT work?
Or shall ...