Viewing 15 posts - 91 through 105 (of 173 total)
psmg01 (12/19/2008)
Hi,RAC seems to be a cool tool.
Is it free for universities/research projects?
Thanks,
Maria
Hello,
Well it's priced far less than many textbooks universities use:) If $ is really a problem I'll...
December 19, 2008 at 6:40 pm
psmg01 (12/18/2008)
Can you tell me how to do that?I am sorry I am new to this.
Thanks for your help,
-Maria
RAC is at your service for splitting delimited strings. For example:
create...
December 19, 2008 at 1:47 am
Again using RAC:
Exec Rac
@transform='Max(Signal) as Signal & Max(Detect) as Detect & Max(PValue) as PValue',
@rows='Common_ID',
@pvtcol='EAID',
@from='output_info',
@row_totals='n',@grand_totals='n',@rowbreak='n',
@rotate='nest',
@racheck='y',@shell='n'
Common_ID Signal_22 Detect_22 PValue_22 Signal_23 Detect_23 PValue_23
--------- --------- --------- --------- --------- --------- ---------
1 ...
December 18, 2008 at 1:18 am
psmg01 (12/17/2008)
I have a table that has the following values.
col1 | col2 | col3 | col4
1 | val1| val2 | val3
2 ...
December 17, 2008 at 9:30 pm
Steve Jones - Editor (12/16/2008)
Interesting and a nice argument.
However I'd argue that we need lots of checks in there. It can be the tools adding them, but we are more...
December 17, 2008 at 2:33 am
Jeff Moden (12/6/2008)
December 7, 2008 at 2:04 am
Nice job and write up Jeff. For what it's worth, here's your sample data using RAC 🙂
http://beyondsql.blogspot.com/2008/12/sql-server-dynamic-crosstabs-by-jeff.html
best,
steve
December 6, 2008 at 10:25 pm
Jeff Moden (12/4/2008)
rog pike (12/4/2008)
@transform='(Room) as Room',
@rows='[Floor]',
@pvtcol='Room',
@from='Rooms',
@defaults1='y',@rank='Room',@racheck='y',@shell='n'
Floor Room1 Room2 Room3 Room4 Room5 Room6
------- ----- ----- ----- ----- ----- -----
Floor 1 101 102 103...
December 5, 2008 at 7:36 pm
Since you're getting flack you can try RAC 🙂
The RAC utility will let you do want you want very easily. For example:
create table Rooms (Room int primary key, State varchar(20),...
December 4, 2008 at 10:32 pm
Hello Steve,
I agree with you that while excitment sells it doesn't necessary mean progress. And not everyone wants to blow the same whistle and reach for the newest brass ring....
November 30, 2008 at 3:21 pm
rog pike (11/12/2008)
November 13, 2008 at 8:49 pm
An array is a 'type', something the archaic computer science of sql knows nothing about. You have to move to a 'real' relational system to find a list/array type. You'll...
November 12, 2008 at 9:42 pm
You seem to have a case of PMS, pivot madness syndrome. You should check out the RAC utility where the madness (code) is eliminated and you can easily solve your...
October 29, 2008 at 4:07 am
simon phoenix (9/2/2008)
Jeff
In order to trap the first and last record of each sequence , the scenario we had was based on max(id) and min(id), now if there those...
September 4, 2008 at 4:16 am
Jeff Moden (8/30/2008)
--===== Show first and last PRD and date of each SetSequenceSELECT yt.SetSequence,
MAX(CASE WHEN d.MinID = yt.ID THEN PRD END)...
August 31, 2008 at 4:10 pm
Viewing 15 posts - 91 through 105 (of 173 total)