About 6,100 results
Open links in new tab
  1. SSMS permissions vs Db permissions - social.msdn.microsoft.com

    Sep 23, 2009 · Above provides 'FinDevUser' query access as I expected but they cannot view the 'fin' schema tables in 'FinanceDev' Db in SSMS ( SQL Server Management Studio ), although they can …

  2. Grant execute with grant option to a role not working

    Nov 20, 2012 · I want my developers to be able to do their jobs with a bare minimum of permissions. They should be able to see all db-objects, run traces, read/write data, create tables, views and …

  3. How do I implement a common data model in SQL Server 2005?

    Sep 13, 2009 · If i am correct, even in oracle what you do is, you create a seperate schema (user) for common data and another schemas for specific data. That even you can do in SQL Server.

  4. 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, and creating …

  5. dynamic column alias from another table

    Sep 16, 2012 · I need to create a sql-Statemt like select * from ADDRESSES that gives me automatically the real Fieldnames instead of the internal column-names.

  6. How to get type of parameter passed in stored procedure?

    Mar 22, 2007 · You could use sql_variant, but the best thing to do is to treat parameters as strongly typed and only pass proper values to that parameter. You can get the type of the parameter from the …

  7. GDR16 and schema compare (broken? workaround?)

    Nov 11, 2008 · However, for the schema permissions, I thought it would make sense to separate them for clarity, so within each Schema folder (Shema Objects\Schemas\SampleSchema), I created a …

  8. SQL Server User Domain Change - social.msdn.microsoft.com

    Nov 20, 2018 · There is domain change for all user. For example domain1/user_abc will change to domain2/user_abc. I am planning to migrate by create fresh new account with new schema for …

  9. TDE vs Row\Cell\Column Encryption - social.msdn.microsoft.com

    Nov 15, 2011 · SQL Server currently does not have row level encryption per se. You can encrypt all cells (columns) of the row and consider that row level encryption but that design would be very tough to …

  10. Cannot deploy when adding column to system versioned table

    Aug 29, 2018 · [Table1]) BEGIN IF EXISTS (SELECT TOP 1 1 FROM [sys]. [tables] WHERE [name] = N'tmp_ms_xx_Table1' AND SCHEMA_NAME (schema_id) = N'dbo' AND temporal_type = 2) BEGIN …