Showing posts with label friends. Show all posts
Showing posts with label friends. Show all posts

Friday, March 23, 2012

Hi.. friends get set go is my position

Hi friends,

I had download the trial version of SLQ Server 2000 (190 Days Trials).But the sad think is i dont know how to get start with it :( . I have planned wat i want to do and wat i have to be..

I want to practice to get connecting the asp and SQL server . Now iam using ASP and Ms access and I confuse iam not a master brain in ASP . How i want an idea to get set go ...with this SQL server and connecting client tool and these active server page ect. ect...

Please anybody give me an idea to get start with this things and direct me from where should i start with ...

PlZzzz...

anukagniyou can refer http://w3schools.com this is a best site for starters

http://w3schools.com/asp/asp_ado.asp -- for ASP
http://w3schools.com/ado/default.asp -- for ADO
http://w3schools.com/sql/default.asp -- for SQL

M.V.Kishore Reddy

Wednesday, March 21, 2012

hi i'm getting error when i execute the query

i friends i'm getting this error when i execute the insert query... what is the problem and how i can execute the my query? :?

Quote:

Originally Posted by

Server: Msg 8152, Level 16, State 9, Line 1
String or binary data would be truncated.

Quote:

Originally Posted by mak1084

i friends i'm getting this error when i execute the insert query... what is the problem and how i can execute the my query? :?


The reason might be the column length in the table for particula field
will be less than the length of the string data passed.|||Your Inputing data is larger than the available space reserved for the column.
So modify the size of the column or reduce the amount of data.
Siju

hi friends i have one problem on crystal reports

when i execute crystal report in the other system through vb it is executing there and when i try to execute it is showing "0" bytes. may i know what would be the problem. thank u in advance.How did you execute it?
Did you call the reports that reside in other system?

Friday, March 9, 2012

Helpdesk database statistics crosstab report

Hello SQL and Crystal Reports friends,

I am trying to make a report and need some help please.

It is a helpdesk database. Jobs are logged, and then closed. Each of
these events is timestamped in the database in the date fields
DateLogged and DateClosed

JanFebMarApr

NewClosedNewClosedNewClosedNewClosed
10 51362364525

etc.

I am trying to create a crosstab style report that will show each month
of the year along the top, and then the number of jobs logged and closed
during that month. The problem I am having is that when Crystal Groups
by the month, you have to specify a date field for the grouping. If I
select DateLogged, then the crosstab will accurately show all of the
jobs logged for that month, but is not correct for the jobs closed
during that month. The problem is that is counting the number of jobs
that were both logged AND closed during the grouped month.

Can anyone see how such a report is possible?

Furthermore, I would like to be able to calculate how many jobs were
open at the start of the month, as well as at the end of the month.

Thank you for your help.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!There isn't an easy way to create cross tabs in sql. The next version
of mssqlserver is suppose to have some crosstabs functions. If you
really want to do it in sql, I have 3 articles that explained how to
do it using transact-sql. (Painful)
http://www.sql-server-performance.c...orting_page.asp|||Thanks for the feedback Louis. I read your article and it has given me
a few ideas, but isn't really what I'm after.

I have been able to achieve what I'm after partly by combining 2 queries
with the UNION operator. The first query aggregates the count of all
rows that occur on datelogged. The second query does the same with
dateclosed. Then I combine them to get the results. It works well, but
I am still looking for a way to count the number of jobs that were open
at a particular point in time.

Thanks.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!