Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: yehong
  • Order by date
  1. yehong

    how to dyanamically alias a column?

    Hi, Is it possible to create a dynamic alias name based upon a field value? For exp: Select id, case when month=1 then cnt_of_tkts end as month ,case when month=2 then cnt_of_tkts end as month ,case when month=3 then cnt_of_tkts end as month from mytable; Here month is a column name of a table...
  2. yehong

    how tp PIVOT this table?

    Thanks chamilz. It works perfectly. I have another question. Would it be possible to change the order of months in 'select' statement based upon the order of months from another table? Like I have another table that always has current month -12 months i.e, month year 03 2008 02 2008 01 2008 12...
  3. yehong

    how tp PIVOT this table?

    Hi Guys, I am on a tight deadline and would really appreciate if you guys can provide some input. I am using SQL Server 2005. I have following table: Year Dept Month Tkt_Cnt 2008 R&D 02 2 2008 R&D 03 5 2008 R&D 01 6 2007 R&D 06 3 2007 HR 05 8 2007 HR...
  4. yehong

    how to select data for past 12 months from current date?

    Alex, thanks for sample. I am thinking about using pivot logic. I have searched all around but could'nt find any sample for my situation. I am going to create a new post for that.
  5. yehong

    How to create a pivot table in SQL servers?

    Hi Guys, I am also having same problem. I have a table that I need in a pivot form. Should I create a new post or just post my question here?
  6. yehong

    can we create alias from concatenated columns?

    Hi, Is it possible to create an alias from a concatenation of a column and a string or another column? For exmple: Select ID + ' ' + FName as ID +'2008XYZ' from employee; Result: (say ID=1001) 10012008XYZ <--- column alias 1001 John <--value I have trid but getting errors. I am using...
  7. yehong

    how to select data for past 12 months from current date?

    Hi guys, I have a sample table like the following: Unit, Year , SubUnit , Category , Jan_Cases Feb_Cases , March_Cases... Dec_Cases I have data for multiple years. I need to select data based upon current month -12 months. For example if current month is March, then the resulting columns...
  8. yehong

    creating report from xml stored in database

    I am trying to create a report in CR2008. The database is SQL Server 2005. The report is pulling data from one table that has say 10 columns and some columns are defined as xml datatype. All the xml columns are appearing as a memo fields on the report. I want to be able to do a record selection...
  9. yehong

    dynamic color of rows

    Hi guys, I have a report in which I am currently displaying dynamic color of rows by this formula: //@dynamic color if (recordnumber mod 2) = 1 then crwhilte else crsilver) It works fine but only if I don't supress duplicate records. But it does not work when I use this formula to supress...
  10. yehong

    help in a sum query

    Hi Guys, I am on a tight deadline. I have a query that returns data similar to the following: State City JanSum FebSum MarSum... DecSum CA LA 1000 500 300 ... 200 CA SF 500 500 200 ... 300 TX Dallas 300 100 50 ... 150 TX...
  11. yehong

    need a store proc sample for this problem

    Hi, Alex. really appreciated. i will give it a try and let you guys know the results.
  12. yehong

    Crystal 10 does not allow blank parameters?

    FYI - CR2008 now allows "Optional" parameters.... Even 2008 can not handle empty parameter values. I tried to set 'Optional Prompt' option, but that parameter can not be used in any formula.
  13. yehong

    need a store proc sample for this problem

    Thanks for your response, Alex. The problem is that the table is designed in that way. And the number of rows for each id could be numerous. So, there needs be a dynamic code that gets a single id and loops through the table for all of its rows and creates a one horizontal row. I can do it...
  14. yehong

    need a store proc sample for this problem

    Hi, I have a table whose data is in the following format: ID Column1 Value1 1 State California 1 City Los Angeles 1 Dept HR 1 EmpCount 50 2 State New York 2 City New York 2 Dept Accounting 2 EmpCount 30 2 SubDept...
  15. yehong

    displaying field values in a parameter dynamically-XI

    Hi, I have a report that has two parameters. The first parameter is a static, say with 'By Location', and 'By Departement' values. Now, the second parameter is supposed to display values based upon selection in the first parameter. If first parameter is location, then the second parameter should...
  16. yehong

    Using variable as a column heading

    Any other opinion please? I need to write this sql in a store proc and I can't use any front-end reporting tool or application. -thanks.
  17. yehong

    Using variable as a column heading

    Hi, I have this dyanamic query in which I want to show the value of a variable @val1 as the column heading. Declare @val1 varchar(20) Select @val1='City' Select id, case when table1.field1 = @val1 then table1.field2 end as 'xxxxxxxx' (this should be the value of @val1) from table1 The result...
  18. yehong

    using command vs tables in xi

    Hi, I would like to know which one is more efficient way of bringing data in a report between a command object and using tables (linking expert) directly. And if any pros and cons of using command vs tables or tables vs command. thanks in advance.
  19. yehong

    Tips for fixing PC's to earn extra $$$ on the side

    I have also worked in this area. You can also earn a good business if you can open a small pc repair shop in a visible area. That way not only you can repair pcs, but you may also sell computers and accessories. good luck.

Part and Inventory Search

Back
Top