Search Results

2
votes

How do you migrate SQL Server Database Diagrams to another Database?

Assuming you have access to both databases within a SQL Server instance. Enable Diagrams in the new database: In the new database click on the "Database Diagrams" f …
1
vote

Error inserting data using SqlBulkCopy

Using your original table script, the following code works. private static DataTable GetTable() { var list = new List<DataColumn>(); list.Add(new DataColumn("amount", …
2
votes

How to get number of chars in string in Transact SQL, the “other way”

My understanding is that DATALENGTH(@txt)/2 should always give you the number of characters. SQL Server stores Unicode characters in UCS-2 which does not support surrogate pairs. …
0
votes

SQL counts performance (sql 2000)

One thing to take into consideration, is that the SQL Server query optimizer is cost based. In other words it will inspect your query, index strategies, statistics and other factors to create a qu …