Crystal report
-
Hi I hava problem regarding crystalreports My problem is how to genarate crystal report form two tables which has regid as comman coloums I am using .net2.0 ,sqlsever2005
came out of hardwork
-
Hi I hava problem regarding crystalreports My problem is how to genarate crystal report form two tables which has regid as comman coloums I am using .net2.0 ,sqlsever2005
came out of hardwork
Hi, You can create a "view" in sql server 2005 from 2 tables. And use that view to create the report.The view here will act as a single table.
To succeed, we must first believe that we can. Sherin Iranimose
-
Hi, You can create a "view" in sql server 2005 from 2 tables. And use that view to create the report.The view here will act as a single table.
To succeed, we must first believe that we can. Sherin Iranimose
I am new to .net could plse suggest me any example so that ia can manage my self
came out of hardwork
-
I am new to .net could plse suggest me any example so that ia can manage my self
came out of hardwork
Hi, I dont know websites explaining SQL server views. I think you know how to create crystal reports from tables. So... 1.Open MS Sql Server Management Studio 2.Navigate to your database 3.There will be a treenode "Views" right click on it. 4.Select New View 3.Select the tables that you want to include.press Add Give your condition for the view. dont think it is difficult.try yourself it is very very easy...
To succeed, we must first believe that we can. Sherin Iranimose
-
Hi, I dont know websites explaining SQL server views. I think you know how to create crystal reports from tables. So... 1.Open MS Sql Server Management Studio 2.Navigate to your database 3.There will be a treenode "Views" right click on it. 4.Select New View 3.Select the tables that you want to include.press Add Give your condition for the view. dont think it is difficult.try yourself it is very very easy...
To succeed, we must first believe that we can. Sherin Iranimose
HI Thanku I created a view how to use it form userside or the query which is generated is to be used
came out of hardwork
-
HI Thanku I created a view how to use it form userside or the query which is generated is to be used
came out of hardwork
Hi Oh... good You are Fast... The view you created will act like a table. No need to use the query generated. Save the view with a name. then eg: SELECT * FROM MyView will return all the data from the view. I think now you are femiliar withit...
To succeed, we must first believe that we can. Sherin Iranimose