Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
2000 Equivalent?
Message
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Environment versions
SQL Server:
SQL Server 2000
Miscellaneous
Thread ID:
01509488
Message ID:
01509492
Views:
64
This message has been marked as the solution to the initial question of the thread.
>Does anybody know if there is an Equivalent of the following in SQL 2000? This code works in 2008 but returns invalid object when trying to run it in SQL 2000. The purpose is to get all the field names in my Temp Table which is #MyBedsByDate.
>
>
>SELECT Name 
>FROM tempdb.sys.columns where object_id =object_id('tempdb..#MyBedsByDate') 
>
>
>Thanks in advance
>
>Kirk

Check syscolumns instead of sys.columns

Also, Information_Schema.Columns view should work in SQL 2000 as well.
SELECT Column_Name as Name from TempDb.Information_Schema.Columns
WHERE Table_Name = '#MyBedsByDate'
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform