Jul 31, 2008 #1 R7Dave Programmer Oct 31, 2007 181 US Hello I am trying to write to return job information. This works... USE MSDB select * from sysjobs In sysjobs, there is a filed called CATEGORY_ID that contains a number. What table contains category description? Thanks Dave
Hello I am trying to write to return job information. This works... USE MSDB select * from sysjobs In sysjobs, there is a filed called CATEGORY_ID that contains a number. What table contains category description? Thanks Dave
Jul 31, 2008 #2 SQLSister Programmer Jun 18, 2002 7,292 US I'd try syscategories "NOTHING is more important in a database than integrity." ESquared Upvote 0 Downvote
Jul 31, 2008 #3 memdiscount Programmer Mar 12, 2008 50 US You can read about the table syscategories here: http://msdn.microsoft.com/en-us/library/ms189757.aspx Thanks Upvote 0 Downvote
You can read about the table syscategories here: http://msdn.microsoft.com/en-us/library/ms189757.aspx Thanks
Jul 31, 2008 Thread starter #4 R7Dave Programmer Oct 31, 2007 181 US Thank you - that is what I needed How did you know the name? I was not able to see these tables in SQL Server Management Studio. Thanks Dave Upvote 0 Downvote
Thank you - that is what I needed How did you know the name? I was not able to see these tables in SQL Server Management Studio. Thanks Dave
Jul 31, 2008 #5 memdiscount Programmer Mar 12, 2008 50 US You will find it in System databases - > msdb - > tables - > system tables Thanks Upvote 0 Downvote
Jul 31, 2008 Thread starter #6 R7Dave Programmer Oct 31, 2007 181 US I have different access then, I had to ask our administrator for rights this morning. The 1st table I see under System Tables is dbo.backupfile Before modifying my rights - I could still query sysjobs without seeing it in Object Explorer Thanks Dave Upvote 0 Downvote
I have different access then, I had to ask our administrator for rights this morning. The 1st table I see under System Tables is dbo.backupfile Before modifying my rights - I could still query sysjobs without seeing it in Object Explorer Thanks Dave