About 589 results
Open links in new tab
  1. how to get sql diagram from already deployed database in sql …

    Jun 2, 2010 · I am new employee in a company and I have sql server 2005 installed with a database for marketing, for example lets call it x, now this database has a set of tables with …

  2. Consequences of deleting/renaming tables

    Feb 13, 2009 · Renaming the table would create schema modification locks, which isn't ideal. Basically, partition switching involves creating a partition scheme for your production table, …

  3. Error 262 SHOWPLAN permission denied in database when …

    Dec 16, 2011 · Some of these objects are server-level objects others are database-level objects. Some of the database objects are schema-bound, for instances tables, views, stored …

  4. Permissions needed to use xp_cmdshell - social.msdn.microsoft.com

    Dec 3, 2012 · To execute sp_configure with both parameters to change a configuration option or to run the RECONFIGURE statement, you must be granted the ALTER SETTINGS server …

  5. SQL server - Possible schema corruption

    Jul 19, 2013 · Failed on trying to patch SQL server to SP4 (now version is - Microsoft SQL Server 2005 - 9.00.3042.00 (X64) Enterprise Edition), on an 2 nodes cluster Server 2003.

  6. Can't create a SQL Server package configuration

    Jun 29, 2006 · It was to do with a property value (an SQL string) that was too long to fit in the default configuration table data column (254 characters.) I have moved to using an external …

  7. SSIS 2005: Dynamically create data flow dest table if it does not …

    Sep 20, 2007 · What about a way to programmatically run through the SQL query results and get their data types, then write a CREATE TABLE statement to support the results of that query, …

  8. Credit card number search - social.msdn.microsoft.com

    Dec 19, 2016 · Does anyone have a script to search all columns in all tables and all databases for credit card number?

  9. Table creation - social.msdn.microsoft.com

    Jul 7, 2014 · You need to have the default database collation as *_BIN2 or create the table by specifying the *_BIN2 collation for the string column on which you want to create the index .

  10. sql queries for this database schema - social.msdn.microsoft.com

    Feb 17, 2014 · SELECT GenericName, MAX (COUNT (GenericName)) FROM Medication WHERE Medication.MedicationID = Prescription.MedicationID GROUP BY GenericName; …