Viewing 15 posts - 841 through 855 (of 1,957 total)
Are you trying to number the columns in order to just put a number in the column title? or some other purpose?
Generally, I would say just add a row_number over(partition...
June 13, 2013 at 4:09 pm
Taking a punt - have you got "Persist Security Info=False" or no entry for "Persist Security Info" at all?
June 11, 2013 at 4:28 pm
If you are using a matrix report, you will only have one cell per column group/row group intersection to set it up on....
June 10, 2013 at 5:01 pm
If a BIGINT is ok, you could consider this:
convert(bigint,convert(varbinary,'00sim384'))
BUT this will only work for strings up to a maximum of eight bytes in length so if you really have those...
June 6, 2013 at 4:49 pm
There are always exactly: 24 hours in a day, 7 days in a week and 12 months in a year ... whether we like it or not. Therefore, I don't...
June 6, 2013 at 4:19 pm
Sorry, I don't know - the renderformat extension came in 2008 R2 I think...
June 1, 2013 at 3:12 am
asranantha (5/31/2013)
1)
I developed one report in ssrs with heading text box.everything is good while preview...
May 31, 2013 at 5:22 pm
If you don't want them to be able to change it, just select "Hidden" in the parameters properties
May 31, 2013 at 5:15 pm
Eugene, thanks for posting that QU solution.
I had always thought of QU as being a "Rolling Total" solution, and this has opened my mind a bit, so thanks again.
Of course,...
May 30, 2013 at 6:20 pm
What is is doing is this:
1. Copy the data to a temp table (#results) and add a column called "selected" - preset to 0.
2. Loop while we have rows where...
May 30, 2013 at 6:57 am
Rather than just returning a count and not knowing which rows are being selected, I will return the full details of each selected row and a count. Once you are...
May 30, 2013 at 6:37 am
You might be able to put page navigation buttons on the report (clickable images) that call the same report with a specific page number and have the paging logic in...
May 29, 2013 at 7:04 pm
It sounds like you are getting in a bit of a loop...
Take a look at this MSDN page.
Once you understand that, put an IF in your triggers to only fire...
May 29, 2013 at 6:34 pm
Hi, can you let us know your expected output as Lynn requested - is it this:
+------------------------------------------------------------+
¦[highlight="#808080"] pmd_patient_id [/highlight]¦[highlight="#808080"] endcallcd [/highlight]¦[highlight="#808080"] eventid [/highlight]¦[highlight="#808080"] createdat ...
May 29, 2013 at 6:29 pm
Do you really need your PodactID, CustomerID and PaymentDate to be nvarchar(MAX) data types? I doubt it - use the correct data type for these.
When you query an element value,...
May 28, 2013 at 4:25 pm
Viewing 15 posts - 841 through 855 (of 1,957 total)