I work with Oracle views in MS Access frequently. We first create the view in Oracle, then attach to it in MS Access the same as any Oracle table. The view needs to have permissions, etc. the same as any new table. The basic syntax for creating an Oracle view is:<br><br>CREATE OR REPLACE VIEW view_name<br>{<br> field1,<br> field2,<br> field3<br>}<br>AS<br>SELECT (continue with your SQL select statement that determines the view structure).<br>/<br>