Viewing 15 posts - 226 through 240 (of 769 total)
If I stop shrink command before its completion, does it rollback everything ?
March 7, 2016 at 2:11 pm
Instead of running it via a SQL job, it makes more sense to run it using SQL Alert as using SQL job you can only schdule to run it every...
March 7, 2016 at 9:56 am
Many thanks Perry. It is working.
March 7, 2016 at 9:19 am
Using this encrypted pswd, failing to connect to Oracle Instance..
$password = read-host -prompt "Enter your Password"
$secure = ConvertTo-SecureString $password -force -asPlainText
$secure
$bytes = ConvertFrom-SecureString $secure
$bytes
$username = "usr"
$tnsalias =...
March 4, 2016 at 5:33 pm
Even could not able to pass it properly to the connection string using $bytes and username too.
$password = read-host -prompt "Enter your Password"
$secure = ConvertTo-SecureString $password -force -asPlainText
$secure
$bytes =...
March 4, 2016 at 5:29 pm
Awesome....Thnx..Just wanted to be double sure
March 3, 2016 at 11:46 am
In my case it is just SQL Account but not the "domain account"..
March 3, 2016 at 11:41 am
Thanks Steve. But here in this case it is required to check ":SQL Login accounts", not windows. Can this also work through group policy settings change?
March 3, 2016 at 11:39 am
I used this below query. Is this worthful though not getting any data.
SELECT
*
FROM sys.dm_exec_requests er INNER JOIN
sys.dm_exec_sessions sp ON er.session_id = sp.session_id
CROSS APPLY sys.dm_exec_sql_text(er.sql_handle)as qt
CROSS APPLY sys.dm_exec_query_stats AS qs
--CROSS...
March 1, 2016 at 2:38 pm
Does it give the Lead blocker and the blocked sessions??
February 26, 2016 at 9:47 am
Did it fix the dtc problem by increasing the time out value? Please suggest!
February 17, 2016 at 2:27 pm
What about the below..?
ErroRCode : 0x139F
CallingAPIName : NLShimImpersonate
API Name: ImpersonateSecurityContext
February 16, 2016 at 2:02 pm
Thanks Gila.
Wanted to add that, DTA sometimes recommends to create custom stats based on the workload data. Even in many cases, DBA/Dev create custom stats for the query optimizer to...
February 16, 2016 at 8:35 am
Thanks Jeremy. The query looks good. But I cant find any session by providing the "job name"
February 12, 2016 at 3:16 pm
Does not say anything bossy!! Checked via Job activity monitor tool too. No luck.
February 12, 2016 at 2:38 pm
Viewing 15 posts - 226 through 240 (of 769 total)