Viewing 15 posts - 571 through 585 (of 2,647 total)
Run this:
SELECT USER_NAME(dpe.grantee_principal_id) AS [UserName],
dpr.type_desc AS principal_type_desc,
dpe.class_desc,
OBJECT_NAME(dpe.major_id) AS object_name,
dpe.permission_name,
dpe.state_desc AS permission_state_desc
FROM sys.database_permissions dpe
INNER JOIN sys.database_principals dpr
ON dpe.grantee_principal_id = dpr.principal_id
WHERE
USER_NAME(dpe.grantee_principal_id) = 'domain\user' and see if there are any...
July 3, 2012 at 12:51 pm
I don't get it. Are you saying that moving the indexes created larger files? What is the issue at hand?
July 3, 2012 at 12:45 pm
Does the user have any permissions denied? That will trump what you have granted.
July 3, 2012 at 10:06 am
Lynn Pettis (7/3/2012)
dir *.* /a: -D /b /s /n
NOTE: No space between the a: and the -D. I had to put...
July 3, 2012 at 9:13 am
jaytaba (7/3/2012)
July 3, 2012 at 8:44 am
The problem is that you are thinking of them as "partial duplicates," which itself is impossible (IMHO). Why not look for the '.' in the file name, since that...
July 3, 2012 at 8:15 am
We do the same procedure without initializing. We sync missing data manually with a merge, SQL Data Compare (redgate), or with a simple insert and join if the data...
July 3, 2012 at 8:13 am
carlos.sfc (7/2/2012)
is SQL Server Running under Local system account or Domain account?If is running under Domain Account check permissions under SQL Server Data Folder where is located your msdb database.
+1...
July 2, 2012 at 7:54 am
The alternative is to stop adding data to the file.
July 2, 2012 at 6:21 am
Luis Cazares (6/28/2012)
SELECT DISTINCT y.*
FROM Table x
CROSS APPLY (SELECT TOP 3 * FROM Table y WHERE...
June 28, 2012 at 12:59 pm
what's the logic? From what you are telling me you are saying this:
If sysccc = 8 is not there, show syscc = 9
Else do not show record where syscc =...
June 28, 2012 at 12:47 pm
The first thing I can think of is that you are joining the huge table over and over. Why?
June 28, 2012 at 9:52 am
lrutkowski (6/27/2012)
June 27, 2012 at 1:19 pm
achen9291 (6/27/2012)
where ClientUserName =(Select top 1 ClientUserName from #ProxyLog_count_2) Group by ClientUserName, DestHost order by counts desc
I...
June 27, 2012 at 9:40 am
Viewing 15 posts - 571 through 585 (of 2,647 total)