About 23,800 results
Open links in new tab
  1. Convert nvarchar to integer in sql server.

    Mar 13, 2020 · I have build a database with columns as "Nvarchar". Data is being inserted by using ssis package to import from excel files to the database. My problem is that when I am …

  2. Create a temp table from the first row (DataRow) of table

    Oct 7, 2021 · 1) I have a permanent table in SQL Server. I need to create a temporary table from this table. the columns of temp table should be the first row of data. Example

  3. How to create dynamic SQL sub string based on field name …

    Mar 31, 2020 · Note that the reason why I use ' Stuff ' function here is that the SQL server version from my side is 2016. If you have sql server higher than version 2017, then you can use …

  4. Error: A duplicate value cannot be inserted into a unique index...

    Nov 23, 2011 · One column is nvarchar (1) and the other is nvarchar (20). The first of these is a "character" column, and it will have "duplicates" if characters are interpreted as case insensitive.

  5. How can I store an arabic string to the Database

    Aug 13, 2008 · At Sql server side we created a Sql Server table with a field which has NVarchar datatype. When ever i copy and paste arabic string to text box and saves the string to DB, its …

  6. Value keeps getting the last character truncated...

    Oct 7, 2021 · Here are the results of the profiler . What's all this? I tested the value and the length of the field (socialsecurity) before it does the writing to the table and the response.write shows …

  7. Truncation errors - social.msdn.microsoft.com

    Jun 15, 2007 · We use SQL Server 2005 x64 Enterprise and I have created a SSIS routine to replace a legacy DTS routine that reads from a Data Reader Source and writes to a SQL …

  8. SQL Server Management studio and UTF-8

    Dec 14, 2008 · SQL Server uses UCS-2 which is similar to UTF16 not UTF8 so you need to use NVarchar data type and use the collation of the langauge you need and use the new SQL …

  9. WHAT IS THE DATA TYPE FOR PASSWORD

    Aug 19, 2011 · Or store the data in VARBINARY if the data is of a binary type. As mentioned there are many ways to do this. If you do not want the password to appear in the database in …

  10. Bulk Import: Bulk insert data conversion error (truncation)

    Aug 6, 2010 · I execute a BULK INSERT command: DECLARE @str_command nvarchar (255) SET @str_command = 'BULK INSERT TEMP_Members FROM ''\\s …