Viewing 15 posts - 46 through 60 (of 61 total)
CONVERT is specific to SQL Server, and allows for a greater breadth of flexibility when converting between date and time values, fractional numbers, and monetary signifiers.
CAST is the more ANSI-standard...
August 13, 2013 at 12:54 pm
I also worked hard towards it but concluded that it's not possible by design itself. Please let us know if you could succeed.
Thanks
August 11, 2013 at 2:30 pm
I would love to have that functionality like microstrategy 🙂
August 11, 2013 at 2:08 pm
Did you try using something like REPLACE(REPLACE(YourField,CHAR(10),''),CHAR(13),'') to modify the field from within the report query?
August 11, 2013 at 1:56 pm
Does this report behaves differently for same records or differently when different records? Try using TRIM()
August 11, 2013 at 1:46 pm
We have IBM team handling servers and backups
August 11, 2013 at 1:25 pm
Check exporting the report to pdf. If you still get an extra column, try setting textbox positions using property window, I mean left=xxx in; top=xxx in.
August 10, 2013 at 2:38 pm
I Agree. Handling it through a SQL stored Procedure is the best option.
August 10, 2013 at 2:36 pm
Hi,
What are you trying to achieve?
Do you need only records from Table 2 those exist in Table 1?
Please clarify.
August 9, 2013 at 5:22 pm
August 9, 2013 at 5:08 pm
Hi,
What are trying to do? Use Left / Right / Inner joins as required.
SELECT A,B,C,D,E,F,Name FROM TABLE1 LEFT JOIN TABLE2 ON A=Loc
SELECT A,B,C,D,E,F,Name FROM TABLE1 RIGHT JOIN TABLE2 ON Loc=A
SELECT...
August 9, 2013 at 3:14 pm
Hi,
You may try:
SELECT convert(varchar(30),Getdate(),121) --2013-08-08 19:01:19.733
August 8, 2013 at 1:02 pm
Hi,
By design, the parameters will be rendered while the report is processing. This means there is no option to hide a parameter at run-time :crying:.
I would suggest you implementing...
August 8, 2013 at 12:43 pm
Hi,
You may use cascading parameters also, if your default values should change based on the main parameter values.
Thanks.
August 8, 2013 at 12:01 pm
Viewing 15 posts - 46 through 60 (of 61 total)