Viewing 15 posts - 3,406 through 3,420 (of 11,678 total)
W00t w00t, this one makes my 12000th point. 😎
March 27, 2014 at 8:06 am
SSRS just issues queries defined in the data sets agains the database and that's it. So it depends on the queries you write in the reports.
With SSRS you also have...
March 27, 2014 at 8:05 am
Sean Lange (3/27/2014)You do however, want to create a clustered index on some column in your table.
Is that absolutely necessary? It depends on the type of table and of the...
March 27, 2014 at 8:03 am
SELECT ID, Cnt = COUNT(*)
FROM MyTable
GROUP BY ID
HAVING COUNT(*) > 1;
March 27, 2014 at 8:01 am
mpradeep23 (3/27/2014)
i want to do in ssrs report only
Good luck with that. SSRS is not made to do such kind of things.
You'll have to use two seperate data sets to...
March 27, 2014 at 7:26 am
GilaMonster (3/27/2014)
That's a hell of a lot of sessions submitted...p.s. did you get the bribe I sent? :hehe:
No. Can you please resend it? 😀
March 27, 2014 at 5:53 am
mpradeep23 (3/27/2014)
i have two dataset from two different database servers
Either use linked servers, or move on dataset to another server.
March 27, 2014 at 5:17 am
Are you deleting connection managers?
These types of errors occur when a connection manager is deleted, but it is still referenced by a task or component.
March 27, 2014 at 4:43 am
Gary Varga (3/27/2014)
March 27, 2014 at 4:27 am
The problem with loading data from Excel is that the providers "guess" the data types according to the contents of the column.
So if the first time a column contains only...
March 27, 2014 at 4:16 am
SELECT pn, rvs, resp, amount, charge, adjust = 0.0
FROM MyTable
UNION ALL
SELECT pn, rvs, resp = 'adjust', amount = 0.0, charge = 0.0, adjust
FROM MyTable
March 27, 2014 at 4:00 am
I was fired once (due to economic reasons). It was the best thing that happened to me in my entire career uptil now.
At the moment though, it didn't feel that...
March 27, 2014 at 3:56 am
gunther.vanloco (3/27/2014)
March 27, 2014 at 3:27 am
Is there a space in the empty column?
Is the column marked to be exported?
(just guessing here)
March 27, 2014 at 2:53 am
mpradeep23 (3/27/2014)
How to compare bewteen datasets in ssrs
I believe a SQL query will be more suited to find the differences.
SSRS can show the results though.
March 27, 2014 at 2:48 am
Viewing 15 posts - 3,406 through 3,420 (of 11,678 total)