About 51 results
Open links in new tab
  1. SQL Server Text type vs. varchar data type - Stack Overflow

    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 …

  2. Diferença entre tipo text e tipo varchar no SQL Server

    Dec 23, 2016 · Qual a diferença de usar o tipo text ao invés do tipo varchar para guardar informações no banco de dados? Existe algum problema de performance? Pois tenho uma tabela no banco que …

  3. Using varchar (MAX) vs TEXT on SQL Server - Stack Overflow

    May 7, 2009 · As per MSDN, Microsoft is suggesting to avoid using the TEXT datatype and it will be removed in a future version of SQL Server. VarChar(MAX) is the suggested data type for storing …

  4. Difference between VARCHAR and TEXT in MySQL [duplicate]

    Aug 14, 2014 · When we create a table in MySQL with a VARCHAR column, we have to set the length for it. But for TEXT type we don't have to provide the length. What are the differences between …

  5. Check if a column contains text using SQL - Stack Overflow

    Mar 2, 2017 · When using TEXT as raw SQL, make sure it's escaped, preferably using prepared statements.

  6. sql server - nvarchar (max) vs NText - Stack Overflow

    Mar 3, 2016 · TEXT, NTEXT and IMAGE data types of SQL Server 2000 will be deprecated in future version of SQL Server, SQL Server 2005 provides backward compatibility to data types but it is …

  7. How to convert all UPPER CASE text to Proper Case/Title Case in SQL ...

    I have a table that was imported as all UPPER CASE and I would like to turn it into Proper Case/Title Case (first letter of each word capitalized). How can I do that?

  8. Search text in stored procedure in SQL Server - Stack Overflow

    Feb 5, 2013 · I want to search a text from all my database stored procedures. I use the below SQL: SELECT DISTINCT o.name AS Object_Name, o.type_desc FROM sys.sql_modules m INNER JOIN …

  9. WHERE clause on SQL Server "Text" data type - Stack Overflow

    SELECT * FROM [Village] WHERE [CastleType] = 'foo' I get the error: The data types TEXT and VARCHAR are incompatible in the equal to operator. Can I not query this data type with a WHERE …

  10. Get the text of a stored procedure in SQL Server

    I am trying to save an old stored procedure into a string. When I use the following I do not get any line breaks. SELECT @OldProcedure = Object_definition(object_id) FROM sys.procedures WHERE n...