August 25, 2011 at 4:32 pm
I'm running the below query to find out the Filestream directory structure (http://www.sqlskills.com/blogs/paul/category/filestream.aspx) but the below error. Please advice
Msg 208, Level 16, State 1, Line 1
Invalid object name 'sys.sysrowsets'.
SELECT o.name AS [Table],
cp.name AS [Column],
p.partition_number AS [Partition],
r.rsguid AS [Rowset GUID],
rs.colguid AS [Column GUID]
FROM sys.sysrowsets r
CROSS APPLY sys.sysrscols rs
JOIN sys.partitions p ON rs.rsid = p.partition_id
JOIN sys.objects o ON o.object_id = p.object_id
JOIN sys.syscolpars cp ON cp.colid = rs.rscolid
WHERE rs.colguid IS NOT NULL AND o.object_id = cp.id
AND r.rsguid IS NOT NULL AND r.rowsetid = rs.rsid
GO
thanks
August 26, 2011 at 12:49 am
Yes, You Will Get This Error if You Try Access System Tables there are Round 58 System Tables (which you cannot access directly)
select * from sys.all_objects where type_desc='SYSTEM_TABLE'
You Need DAC(Dedicated Admin Connection) Connection inorder to access These Tables.
Your Query Will Work If you Have DAC Connection.
Thanks
Kuldeep Bisht
Simplion Technologies
http://mssqlguide.kuldeepbisht.com/
Kuldeep Bisht
Simplion Technologies
http://mssqlguide.kuldeepbisht.com
August 26, 2011 at 11:44 pm
You Need DAC(Dedicated Admin Connection) Connection inorder to access These Tables
Could you explain me the steps to connect sql instance using DAC?
Thanks
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy