Viewing 15 posts - 646 through 660 (of 9,641 total)
Here's a link that explains Output Parameters, which you should read.
So here's how I'd modify the procedure to return @cnt as an output parameter. I'd probably make some other...
October 1, 2014 at 2:23 pm
If you aren't on Twitter you may have missed that Jason Brimhall (SQLRNNR) got awarded MVP today.
October 1, 2014 at 12:25 pm
Luis Cazares (10/1/2014)
October 1, 2014 at 12:12 pm
Do you have specific format applied to the cells? Just guessing but I'd be there is some kind of illegal character in the source data that is causing your...
October 1, 2014 at 12:05 pm
It looks like the article you linked to applies specifically to how Toad Intelligence Central works and not how SQL Server works.
As long as permissions are correct running cross-database queries...
October 1, 2014 at 12:03 pm
Kevin is correct. And the number of indexes that is correct is going to vary greatly based on workload. Is it an an active OLTP system, then fewer...
October 1, 2014 at 11:48 am
HanShi (9/30/2014)
September 30, 2014 at 7:47 am
I'm sure there are other, perhaps simpler ways to do this, but here's one that works using Jeff Moden's DelimiteSplit8K function which you can get from and learn about here[/url]:
DECLARE...
September 25, 2014 at 7:20 am
No, that's in the printer properties, not anything in the report.
September 24, 2014 at 11:07 am
What order do you want your example data to be returned in?
If I just use:
SELECT
*
FROM
@IPAddresses
ORDER BY
[@IPAddresses].IPAddress
I get the...
September 24, 2014 at 11:03 am
SSRS is not designed to update data, it is "reporting" services, so is designed to display data. If you really need to perform an update on the selected data,...
September 24, 2014 at 10:56 am
I'm not sure what you mean by the term OLAP. Are you talking about cubes or data warehouse/data mart databases?
In either case, best practice is to keep them separate....
September 24, 2014 at 10:53 am
There aren't any dependencies between data sets in a report that I know of.
September 24, 2014 at 10:47 am
I think you want something like this, but I'm not sure:
CREATE TABLE #Tracking
(
ID INT IDENTITY(1, 1),
COrderID...
September 24, 2014 at 10:46 am
I recommend sp_WhoIsActive that Adam Machanic has provided free to the community. You can download it here.
If you don't want to go that route you need to be sure...
September 24, 2014 at 10:25 am
Viewing 15 posts - 646 through 660 (of 9,641 total)