Viewing 7 posts - 16 through 22 (of 22 total)
Hi,
Surely if you can extract the SA Hash from the syslogins table and then crack it , this is a security hole.
not being pedantic , just an overthought
Matt
May 5, 2011 at 3:34 am
So is :-
select * from syslogins
Not an issue then?
May 5, 2011 at 3:06 am
Sorry my bad , i looked at the code and it wasnt bounding i
So i chnaged it slightly
SELECT DB_NAME() AS DatabaseName, Object_name(i.object_id) AS TableName, i.index_id, name AS IndexName,...
March 30, 2011 at 6:34 am
Because when i execute this i get the following error:-
Msg 4104, Level 16, State 1, Line 1
The multi-part identifier "a.index_id" could not be bound.
Removing the AS TableName syntax removes this...
March 30, 2011 at 6:32 am
Thanks , not to be pedantic , the code was wrong on the Object_id and had to omit as Table_name(see below)
SELECT DB_NAME() as DatabaseName , Object_name(a.object_id), a.index_id, name, avg_fragmentation_in_percent
FROM sys.dm_db_index_physical_stats...
March 30, 2011 at 5:26 am
Have you tried:-
EXEC master.dbo.sp_configure 'show advanced options', 1
RECONFIGURE
EXEC master.dbo.sp_configure 'xp_cmdshell', 1
RECONFIGURE
Matt
March 30, 2011 at 4:48 am
Can you not put at the top of the script
Use [Master]
go
Would be a lot simpler
March 16, 2011 at 4:27 am
Viewing 7 posts - 16 through 22 (of 22 total)