About 50 results
Open links in new tab
  1. SQL Server: most commonly used data types? - Stack Overflow

    Jul 30, 2016 · I'm a bit confused as there are many variable types in sql server (ntext, varchar, nvarchar, etc) so maybe if you give me what data types you use for the following fields I'll understand this a lit...

  2. Difference between numeric, float and decimal in SQL Server

    Jun 29, 2009 · For the Decimal or Numeric data types, SQL Server considers each specific combination of precision and scale as a different data type. DECIMAL (2,2) and DECIMAL (2,4) are different data …

  3. SQL server query to get the list of columns in a table along with Data ...

    Mar 11, 2010 · I need to write a query on SQL server to get the list of columns in a particular table, its associated data types (with length) and if they are not null. And I have managed to do this much. But …

  4. How do I return the SQL data types from my query?

    Dec 17, 2014 · I need to create the staging table, but with hundreds of views/tables to dig through to find the data types that are being represented here, I have to wonder if there's a better way to construct …

  5. sql server - Finding the data types of a SQL temporary table - Stack ...

    Yes, the data types of the temp table will be the data types of the columns you are selecting and inserting into it. So just look at the select statement and determine each data type based on the …

  6. pyspark data type translation to sql server data types on df.write

    Aug 1, 2023 · 2 How do pyspark data types get translated to sql server data types on df.write() when using jdbc (I am using com.microsoft.azure:spark-mssql-connector_2.12:1.3.0)? With the …

  7. Error converting data types when importing from Excel to SQL Server ...

    Mar 21, 2012 · 5 When Excel finds mixed data types in same column it guesses what is the right format for the column (the majority of the values determines the type of the column) and dismisses all other …

  8. .net - C# data types to SQL Server data types - Stack Overflow

    The column name will be the DBMS data type (name) and the column data type will be the data type for whatever language in which you are working. Your query can be limited to the specific DBMS data …

  9. .net - C# Equivalent of SQL Server DataTypes - Stack Overflow

    The following table lists Microsoft SQL Server data types, their equivalents in the common language runtime (CLR) for SQL Server in the System.Data.SqlTypes namespace, and their native CLR …

  10. SQL Server to Entity Framework data type mapping

    Jul 27, 2016 · I need to know the equivalent SQL Server data types for EF. I found 2 similar online references, but their definitions appear inconsistent. Which reference should I refer to if I'm using …