About 399 results
Open links in new tab
  1. Inserting JSON Text into SQL Server Table - CodeProject

    Mar 25, 2016 · Introduction SQL Server 2016 and Azure SQL Database have a new function OPENJSON that enables you to easily parse JSON text and insert it into any table. See more …

  2. Entity Framework: Storing Complex Properties as JSON Text

    Jan 17, 2017 · SQL Server 2016 and Azure SQL Database (I will call them SQL Database in the following sections) enables you to store hybrid data with both relational tables and columns, …

  3. How to store and fetch binary data into a file stream column

    Jan 3, 2009 · In SQL Server 2008, if a varbinary column is defined to be stored as a file stream, the binary data is stored in a special folder structure, which is managed by the SQL Server …

  4. Computed Column Specification in SQL Server - CodeProject

    Jul 18, 2007 · The user needs to select the column and write in "Computed Column Specification --> Formula". Remember the parameters are the column names, users are not supposed to …

  5. Data Dictionary in C#.NET - CodeProject

    Sep 23, 2016 · Another thing might be to populate a combo box to load all the SQL server instances in the network (System.Data.Sql.SqlDataSourceEnumerator), and choosing the …

  6. Create Primary Key using Entity Framework Code First

    Sep 5, 2014 · Sometimes, Code First fails to drop the database and generates an exception as follows. It generally happens if some process is using the SQL Server database and during …

  7. How Do I: Use SQL File Stream - CodeProject

    Nov 18, 2010 · An end to end article describing how to use file stream data type in SQL Server. This article discusses both SQL Server and .NET side of things.

  8. SQL Server Database Project - SSDT - Continuous Delivery and …

    Oct 24, 2017 · Once you downloaded and restored the database in your SQL Server Management Studio, start by creating a new project in Visual Studio (For this article, I’m going …

  9. Repeating a SQL Row Based on a Value in a Different Column

    Oct 20, 2011 · There are times that we get requirements such as populating and duplicate SQL rows, based on a value, on another column. E.g.: In an inventory system, when items are …

  10. Generating Insert or Update statements from table data using SQL …

    Oct 3, 2006 · I know that SQL Server 2005 has great little widgets for creating insert statements based off the table, but what I have always needed was a way to generate an update or insert …