About 667,000 results
Open links in new tab
  1. sql - What does ON [PRIMARY] mean? - Stack Overflow

    When you create a database in Microsoft SQL Server you can have multiple file groups, where storage is created in multiple places, directories or disks. Each file group can be named. The …

  2. sql - How to create Temp table with SELECT - Stack Overflow

    Jul 15, 2012 · If stored procedure A creates a temp table and calls stored procedure B, then B will be able to use the temporary table that A created. However, it's generally considered good …

  3. sql - How do you create a temporary table in an Oracle database ...

    I would like to create a temporary table in a Oracle database something like Declare table @table (int id) In SQL server And then populate it with a select statement Is it possible? Thanks

  4. Create a nonclustered non-unique index within the CREATE TABLE ...

    Prior to SQL 2014, CREATE/ALTER TABLE only accepted CONSTRAINTs to be added, not indexes. The fact that primary key and unique constraints are implemented in terms of an …

  5. How to create a subset of a table using SQL in MS Access

    Jul 5, 2016 · I have understood that I can write the following query to create a subset of a data set and it worked. I want to use the data set from this query to create another table. How do I save …

  6. create SQL Server table based on a user defined type

    Creating a Table of a user defined type there is no such thing in sql server. What you can do is Declare a variable of this type and populate it but you cant create a table of this type.

  7. CREATE TABLE IF NOT EXISTS equivalent in SQL Server

    Jun 29, 2011 · CREATE TABLE IF NOT EXISTS works on mysql but fails with SQL Server 2008 R2. What is the equivalent syntax?

  8. sql - Create Table from View - Stack Overflow

    Jul 14, 2011 · 14 In SQL SERVER you do it like this: SELECT * INTO A FROM dbo.myView This will create a new table A with the contents of your view. See here for more info.

  9. Check if table exists and if it doesn't exist, create it in SQL Server ...

    Aug 23, 2019 · I am writing a Stored procedure in SQL Server 2008. I need to check if a table exists in the database. If it doesn't then I need to create it. How do I do this?

  10. Check table exist or not before create it in Oracle

    Trying to check is table exist before create in Oracle. Search for most of the post from Stackoverflow and others too. Find some query but it didn't work for me. IF((SELECT count(*) …