Tagged Questions

0
votes
2answers
52 views

How many characters in varchar(max)

How many characters can a SQL Server 2008 database field contain when the data type is VARCHAR(MAX)? Thanks guys, helped me out a lot :)
0
votes
1answer
44 views

Strange mySQL Coldfusion Problem

Hey guys well I'm working on this system and it giving me sooo much trouble. I just want to quit at this point. Long story short I made a few changes to how a mySQL table works, I …
0
votes
3answers
95 views

What does varchar(-1) mean?

What is the meaning of varchar(-1) in SQL Server 2008? Is it an alternative for varchar(max)?
0
votes
7answers
58 views

Should I use an inline varchar(max) column or store it in a seperate table?

I want to create a table in MS SQL Server 2005 to record details of certain system operations. As you can see from the table design below, every column apart from Details is is non …
1
vote
2answers
52 views

mysql 7columns pk vs. 1 column md5 unique constraint

Hi, i have a very large table which is currently approx 70M rows and growing daily by the thousands , this schema is tipping over every day now so i'm moving to a partitioned table …
0
votes
2answers
36 views

How do I know if my PostgreSQL server is using the “C” locale?

I'm trying to optimize my PostgreSQL 8.3 DB tables to the best of my ability, and I'm unsure if I need to use varchar_pattern_ops for certain columns where I'm performing a LIKE ag …
2
votes
8answers
7k views

What is the difference between nchar(10) and varchar(10) in MSSQL?

What is the difference between nchar and varchar in MSSQL? What does nvarchar mean? Cheers!
1
vote
4answers
67 views

Can I get a list of rows with varchar values that aren’t castable to datetime?

I have a legacy SQL Server 2000 database that has one column that has a date that is stored as a varchar instead of a datetime for whatever reason. I want to make a view against t …
0
votes
4answers
166 views

mysql Varchar size limit

Hi All, Can anyone provide me a quick input on how mysql treat varchar data type size. For Example: - If I have a column in table with field with Varchar(15) and if I try to inse …
3
votes
6answers
92 views

Why are SQL fields lengths always (2^n)-1 unless less than 127?

A lot of Database schemas seem to follow the following standard: (2^n)-1 for large fields: varchar(511) varchar(255) varchar(127) ...then (2^n) for smaller ones varchar(64) va …
0
votes
2answers
279 views

Mapping to varchar and nvarchar in hibernate

If there are 2 columns in database, eg. code varchar(3) name nvarchar(50) how to tell hibernate to pass varchar for searching by code? In the hibernate mappings string is mapped …
1
vote
5answers
243 views

Is a VARCHAR(20000) valid in MySQL?

I’m in need of some clarification of the maximum length of a varchar field in MySQL. I’ve always thought the max length was 255 (255 what? Characters I’ve assumed, but this might …
0
votes
3answers
597 views

oracle varchar to number

How do i convert a oracle varchar value to number eg table - exception exception_value 555 where exception_value is a varchar type I would like to test the value of exception_v …
0
votes
0answers
13 views

Archiving from mySQL to Sybase using Powercenter, problem converting varchar to bit

I have to different databases one is mySQL and the other is Sybase IQ. Both have the same table layout and datatypes. One of the fields has a bit datatype. Unfortunately when I …
2
votes
2answers
568 views

How can Hibernate map the SQL data-type nvarchar(max)?

I have a column in my SQL-2005 database that used to be a varchar(max), but it has been changed to an nvarchar(max). Now I need to update my hibernate mapping file to reflect the …

1 2 3 4 5 next
15 30 50 per page