
Limiting the number of concurrent sessions per user
Feb 12, 2019 · The proxy login is something like temporary SQL login account to view the select query from sys.dm_exec_sessions. It is not good for security to grand the view permission to the general user.
Filtering Excel SSAS Cube with textboxes
Oct 8, 2012 · Here is what you can do then: 1. Create a view in your SQL Server that would display your tag keys (IDs) 2. From Excel, connect to your view (Data->From Other Sources->From SQL Server) …
permission to access database properties
Dec 11, 2013 · The user needs the permission VIEW SERVER STATE and must have been granted access to the database of which he wants to view properties. The user does not need any further …
In SSMS, the option for ALTER to is disabled and the option to Delete a ...
Oct 30, 2018 · For many objects, CREATE or ALTER is more or less the same thing, syntaxwise. You use CREATE when the object does not exist, and ALTER when it does. And these days (from SQL …
Can we create temp tables in SSRS data set
Mar 31, 2017 · Currently, SQL Server is not supported to create a temp table using GreenPlum database as data source. If you just would like to create a temp table and get the data, please try to …
Equivalent of Materialized Views in SQL Server
Nov 6, 2014 · There is no direct equivalent to Oracle MV in SQL Server. That is an Oracle concept. SQL Server uses views differently than Oracle. I would suggest testing a normal view and see if you …
NT Service\winmgmt account has sysadmin in SQL 2012
Jan 24, 2013 · CREATE DDL EVENT NOTIFICATION permission in the server. CREATE TRACE EVENT NOTIFICATION permission in the Database Engine. VIEW ANY DATABASE server-level …
Create View butr cant use declare, can I create a procedure and call it ...
Sep 12, 2017 · Hello, I have a select that used declare, and now I need to make that select a view, and I can't use declare, should I create a procedure and then call that procedure from the create view or …
Table has BigInt - when created View int picked
Jul 30, 2014 · Hello All, We have a table (tbl_production) and it has a filed (ID) which is of data type bigint. When we create a view on this table, we notice the (ID) filed is of data type int. Compared the …
Base de datos fragmentada en SQL Server - social.msdn.microsoft.com
Feb 4, 2010 · Porque en los libros en pantalla de SQL Server trata las bases de datos federadas, y dicen que se pueden crear particiones horizontales de las tablas, de hecho hay un ejemplo que lo …