Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
asm
Posting Yak Master
140 Posts |
Posted - 2005-12-12 : 06:33:12
|
| HiI want to convert the access2000 database to SQL server 2000.I am able to convert the tables but unable to convert the query as view in SQL server 2000.please quide how to convert the query as view in sql server 2000.thanksasm |
|
|
khtan
In (Som, Ni, Yak)
17689 Posts |
Posted - 2005-12-12 : 08:12:36
|
the syntax for creating a view iscreate view view_name as -- basically this is your queryselect col1, col2, ... from table_namewhere <where conditions> are you facing any problem creating a view ?-----------------[KH] |
 |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2005-12-12 : 08:25:16
|
| and if your queries have parameters then you need to convert them as Stored ProcedureCreate Procedure your_SP (@param dataType,.....)asSelect .....where col=@param....MadhivananFailing to plan is Planning to fail |
 |
|
|
asm
Posting Yak Master
140 Posts |
Posted - 2005-12-13 : 03:12:26
|
| I am able to create a view in SQL Server 2000 but i want access2000 query converted into sql instead of creating a view.asm |
 |
|
|
khtan
In (Som, Ni, Yak)
17689 Posts |
Posted - 2005-12-13 : 03:27:31
|
quote: i want access2000 query converted into sql instead of creating a view
what do you mean by that ?-----------------[KH]Learn something new everyday |
 |
|
|
asm
Posting Yak Master
140 Posts |
Posted - 2005-12-13 : 03:46:06
|
| I want like tables of access2000 converted into sql. |
 |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2005-12-13 : 04:00:32
|
| Use Stored Procedure as I suggestedMadhivananFailing to plan is Planning to fail |
 |
|
|
|
|
|