Viewing 15 posts - 46 through 60 (of 374 total)
I found where the bottleneck is:
My JOIN with [CreditSpreadCurve] view.
One of the tables there is 63 million records.
August 31, 2009 at 12:35 pm
I figured it out.
Apparently my Total column, the one I was trying to change, was binded with a previous column.
So when I changed the width for that previous column my...
August 27, 2009 at 7:10 am
I changed "H:\" drive to "\\tocs2001\Ope$\"
and it worked;
BACKUP DATABASE [ReportServer]
TO DISK = N'\\tocs2001\Ope$\BK\JUL21_2009.bak'
So it looks like SQL Server cannot properly see mapped drives.
July 21, 2009 at 8:33 am
I did a test on my local SQL Server instance.
I changed MSSQLSERVER account to my domain account that has "WRITE" access to
the network "H:\BK" folder.
So I run this script:
BACKUP DATABASE...
July 21, 2009 at 8:29 am
Just some clarification.
'NA\TRMR' account has all the roles: sysadmin,securityadmin,etc.
Scenario 1
----------
I am sysadmin. When I run backup script with Windows Authentication:
BACKUP DATABASE [ReportServer]
TO DISK = N'C:\SQL Server - Backups\ReportServer\JUL20_1332_2009.bak'
--------
It...
July 21, 2009 at 7:04 am
OK.
After some research it looks like
it only can be implemented if you Export to XML and then create XSLT file
and specify it in
Report Properties/
Data Output/
Data Transform:/
See this article...
June 10, 2009 at 11:02 am
I tried it with Sub Reports
and it's the same problem.
Regardless how you name your subreports, tables
you still end up with "Sheet2", Sheet2".
But I would like to control those Sheet names.
June 10, 2009 at 7:46 am
unknown_sql,
We're on SSRS 2005.
Do you think we still can try this approach?
June 10, 2009 at 6:52 am
Nate, Thank you for a quick response.
I thought about this option.
But then in your output Excel your Sheets
would be named "Sheet1", "Sheet2",etc.
There is no control over naming. Users will not...
June 10, 2009 at 6:39 am
Based on
Hierarchy parameter a list of
Business Entity gets refreshed.
But the same process is in all those reports.
And more to that.
Even when you select a Date from Calendar
it takes...
May 20, 2009 at 11:06 am
I found a simpler solution.
I just loaded trace file into multiple tables:
TraceResults_1
TraceResults_2
TraceResults_3
TraceResults_4
TraceResults_5
etc.
broken by StartTime values.
INSERT INTO TraceResults_1
(TextData, Duration, Reads, Writes, CPU, StartTime)
SELECT TextData, Duration/1000, Reads, Writes, CPU, StartTime
FROM fn_trace_gettable('E:\20090505-203736.trc',1)
WHERE StartTime...
May 14, 2009 at 10:19 am
I have a physical table:
ReportServer.Catalaog
ReportServer.ExecutionLog
But I'd like to display the IDENTITY RowNumber.
You can do it only using "SELECT INTO".
So I don't have a choice. I have to INSERT it into...
May 13, 2009 at 9:04 am
I found this topic on MSDN:
http://msdn.microsoft.com/en-us/library/ms189034.aspx
(but it's about SQL Server 2008 so it might not work in 2005)
It says:
...meets or exceeds the specified maximum file size, you are...
May 13, 2009 at 8:00 am
Gail! Help!
INSERT INTO TraceResults
(TextData, Duration, Reads, Writes, CPU, StartTime)
SELECT --top 100000
TextData, Duration/1000, Reads, Writes, CPU, StartTime
FROM fn_trace_gettable('E:\20090505-203736.trc',1)
has been running for 8.5 min and
set transaction isolation level
read uncommitted
begin transaction
select count(*)...
May 12, 2009 at 10:16 pm
It looks like it's a heavily used OLTP system.
But what exactly is generating so much SQL we don't know.
They suspect it's some custom services+.NET application.
But I need to find out...
May 12, 2009 at 12:35 pm
Viewing 15 posts - 46 through 60 (of 374 total)