Viewing 15 posts - 181 through 195 (of 560 total)
Thanks a lot.
Above is a very interesting piece of code. I definitely would like to experiment and try myself. I will try this at home at my...
February 19, 2015 at 10:40 am
Lowell (2/19/2015)
just encrypting a column is just a piece of the puzzle. that alone it protects from casual review by people who have db_datareader.
If the only user account that hits...
February 19, 2015 at 9:29 am
Grant Fritchey (2/19/2015)
February 19, 2015 at 5:09 am
GilaMonster (2/19/2015)
Consider, all HR people have access to the Employees table but only the HR head for each department should...
February 19, 2015 at 5:00 am
For how long has been running? If you execute this T-SQL script
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
SELECT
DB_NAME(er.[database_id]) [DatabaseName]
,er.[session_id] AS [SessionID]
,er.[command] AS [CommandType]
,est.[text] [StatementText]
,er.[status] AS [Status]
,CONVERT(DECIMAL(5, 2), er.[percent_complete]) AS...
February 18, 2015 at 4:59 pm
Lowell (2/18/2015)
effectively each column that specifically needs to be protected...
February 18, 2015 at 4:45 pm
Grant pretty much explained it already, and very well by the way.
But in other words ... if your column or Index is not selective enough, there is a chance...
February 18, 2015 at 7:32 am
S. Kusen (1/29/2015)
January 29, 2015 at 1:02 pm
Wow! :doze: ... I can't believe people keep asking me about that and if the session has been started. It happened to me on StackExchange too.
Yes! The session is running....
January 27, 2015 at 12:36 pm
rollercoaster43 (1/27/2015)
I have a question out of curiosity.. For Bulk Load requests in SQL server, Are there any specific profiler event? Like the one we have for RPC RPC:Starting...
January 27, 2015 at 9:26 am
Most of your tables have 1k pages or below. You can't get rid of fragmentation on small tables like that. In fact, you should not put too much effort on...
January 23, 2015 at 2:05 pm
I do recommend you to do this on a test environment 1st, but you can test how much memory backups consume with these flags
TRACE FLAG 3605:
TRACE FlAG 3213:
Fire a...
January 23, 2015 at 11:48 am
I've done this when creating AdventureWorks I think, where the ldf is absent.
Having said that, I see no other useful purpose or reason. Attaching or creating a database without a...
January 22, 2015 at 11:02 am
** EDIT **
Replace some values and did some trial and error and got this
SELECT
event_data.value('(event/data/value)[5]', 'bigint') AS cpu_time,
--database name
event_data.value('(event/data/value)[6]', 'bigint') AS duration,
--estimated cost
event_data.value('(event/data/value)[7]', 'bigint') as estimated_row,
--nest level
event_data.value('(event/data/value)[2]', 'bigint') AS object_id,
event_data.value('(event/data/value)[9]', 'nvarchar(max)')...
January 21, 2015 at 3:19 pm
Tony Lanterman (1/9/2015)
January 9, 2015 at 1:31 pm
Viewing 15 posts - 181 through 195 (of 560 total)