0

What are the alternatives for the below Netezza Tables and columns that I could use in Redshift?

  • _v_table (columns used: 'RELVERSION' and 'OBJTYPE')
  • _v_relation_columns (columns used: 'NAME' and 'ATTNAME')
marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459

1 Answers1

0

The alternative to Netezza's _v_table could be SVV_ALL_TABLES in Redshift. There's no relversion attribute because tables aren't versioned. (So you don't need to groom versions after adding a column).

And as a replacement for _v_relation_column you could use the information_schema.columns table.