Click here to Skip to main content
15,892,537 members

dipal_bhavsar - Professional Profile



Summary

    Blog RSS
5
Authority
7
Debator
1
Enquirer
295
Organiser
779
Participant
0
Author
0
Editor
I have done Master of Computer Application from Ahmedabad, I am doing job in Tietoenator Software solution in Pune. I have been in this field for 5 years.

dipal.bhavsar@gmail.com

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralServer 2005 Reporting Services Pin
dipal_bhavsar6-Jun-06 23:19
dipal_bhavsar6-Jun-06 23:19 
Simple Walk Through of SQL Server 2005 Reporting Services XML Data Source

A cool new feature of SQL Server 2005 Reporting Services is that you can report on XML data. These are the steps in the demo I did today:

* Create a new web service.
* Add a public class called product to the web service:

Public Class Product
Public pname As String
Public pcat As String
Public psubcat As String
Public psales As Decimal
End Class


* Create a method that returns an array of these product items. In my case, I was reading total sales from Adventure Works grouped by Product Category, Product Subcategory, and Product Name. Updated: Code for the method is here.
* Run the web service to check that it works.
* At this point during the development process, I spent three hours debugging a security issue that prevented me from logging on to the database. I changed my permissions about a million times, switched from Windows authentication to SQL authentication and back again, tried logging on as SA, then restarted SQL Server, IIS, the entire machine, every other machine in my office, and my cell phone. Three hours later I determined that the Adventure Works database is actually called AdventureWorks, with no space between the words. After much swearing, I had a running web service.
* In another project, create a new report. In my case, I opened up a second copy of Visual Studio 2005 to keep things clean.
* Add a new data source. The data type is XML. The connection string is the URL for the web service. In my case, that was http://localhost/ProdService/Service.asmx
* Using the generic query designer, enter a query in the XML syntax described in Books Online. In my case, the query was <query><soapaction>http://www.geoffsnowman.net/mytestsvc/GetProducts. The contents of the SoapAction element is the SoapAction associated with the method you want to call on the web service. In my case, I just grabbed it directly from the WSDL of the web service which is at http://localhost/ProdService/Service.asmx?WSDL
* Next I executed the query in the query designer, just to check I had some data.
* Finally, I switched to the Layout tab, dropped a table onto the report and dragged over each field, and the previewed the finished report. Voila!

The other samples I used in my webcast today were:

* Adding green bar to a report using this expression for background color: =IIf(RowNumber(nothing) mod 2, "yellow", "lightgreen")
* Adding code to a report using the code tab:

function ToEuros(dollars as decimal) as decimal
return dollars * 0.83
end function

* A custom data source: The file system information sample data source that ships with both SQL Server 2000 and SQL Server 2005.
* Finally, the Dundas Chart for Reporting Services beta.

This webcast should be available on demand shortly. The final webcast in the current series will be on Friday.

Dipal Bhavsar
Chrysalis Information System
Mumbai
GeneralIntroduction to Reporting Services Webcast Series On Demand Pin
dipal_bhavsar6-Jun-06 20:23
dipal_bhavsar6-Jun-06 20:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.