Viewing 15 posts - 19,531 through 19,545 (of 26,484 total)
I can't really answer that question. We do use SSRS, but I'm not currently involved with it myself beyond using a few reports which we get to using the...
July 24, 2009 at 11:00 am
For edification:
where
[column_name] not like '%10BUC%' and
[column_name] not like '%UNCLGAD%'
is equivalent to
where
not ([column_name] like '%10BUC%' or [column_name] like '%UNCLGAD%')
July 24, 2009 at 10:48 am
Drop HyperBac another email and see if they'll send you an older version of the program to check out.
July 24, 2009 at 10:43 am
You do not need SharePoint to take advantage of SSRS. SSRS integrates with SharePoint allowing you to manage security from one place, SharePoint, if you so desire.
July 24, 2009 at 10:38 am
What version are you running? If you posted it, I can't seem to find it.
July 24, 2009 at 10:32 am
William Plourde (7/24/2009)
July 24, 2009 at 10:26 am
george sibbald (7/24/2009)
I've tried on 3 different servers, can't all be bad. common denominator is hyperbac. what version you guys on?
I'm still running 3.0.11.0.
July 24, 2009 at 10:20 am
.,.,., why not let Jeff post the url? Others, like myself, may just benefit ... oh, you want to keep us in the dark, like mushrooms! 😛
July 24, 2009 at 10:14 am
george sibbald (7/24/2009)
matt stockham (7/24/2009)
Is CPU pegged while the backups are running?
total processor % jumps up about 25% to 50% average, speread evenely across the cpus (4)
Do the...
July 24, 2009 at 9:58 am
Still using a simple table, but probably meets your requirements. Each run of the query took approximately 8 seconds.
declare @PageNum int,
@RowsPerPage...
July 24, 2009 at 9:52 am
michael vessey (7/24/2009)
as i said, this might be a huge query with maybe 15 tables
so your example of
with PagedData as (
select
...
July 24, 2009 at 9:50 am
This is really weird. Is there anything else running on the servers? Anti-Virus software, etc?
July 24, 2009 at 9:46 am
Gift Peddie (7/24/2009)
dont think I quite understand, Code is simply data if you could recover all your data then why are you not able to recover all your code?...
July 24, 2009 at 9:41 am
Something like this?
declare @PageNum int,
@RowsPerPage int;
set @PageNum = 1;
Set @RowsPerPage = 10;
set statistics io on;
set statistics time on;
with PagedData as (
select
...
July 24, 2009 at 9:31 am
Viewing 15 posts - 19,531 through 19,545 (of 26,484 total)