Viewing 15 posts - 241 through 255 (of 566 total)
You can create a new SSRS project and add the existing RDL files (i.e. C:\Program Files\Microsoft SQL Server\90\Tools\PerformanceDashboard). You can then extract the DDL/DML used to produce the reports from...
February 20, 2008 at 11:32 am
If it returns a blank screen, that is a good thing 🙂 Ruling out any FW issues. Can you reproduce this from the server that is hosting the linked server...
February 20, 2008 at 8:54 am
A simple verification - on the server in question, execute a
select @@servername
If this returns the correct server name then you are all done. If not use the sp_dropserver, sp_addserver method...
February 19, 2008 at 3:05 pm
I would recommend measuring Avg Disk Sec/Read, Avg Disk Sec/Write, and Avg Disk Queue Length within performance monitor. You can use SQLH2 to help capture this information over a period...
February 19, 2008 at 2:55 pm
Can you telnet to the instance on TCP 1433? i.e. Start -> Run -> Cmd
telnet MYSERVER 1433
February 19, 2008 at 1:51 pm
February 19, 2008 at 1:44 pm
In that case, IBM will be your best resource. A good place to start -
http://www-03.ibm.com/systems/i/software/access/windows/database.html
February 19, 2008 at 1:23 pm
After renaming the Windows server, issue a sp_dropserver, sp_addserver and restart MSSQL services.
use master
go
exec sp_dropserver 'old server name'
go
sp_addserver 'new server name', 'local'
go
February 19, 2008 at 1:20 pm
Any reason not to backup/restore the database?
February 19, 2008 at 1:13 pm
Are you using IBM's OLE DB provider or Microsoft's OLE DB provider? If MS, refer to http://support.microsoft.com/kb/218590/%5B/url%5D
February 19, 2008 at 12:51 pm
From the default trace file (refer to T-SQL in the post above).
February 19, 2008 at 11:48 am
NP 🙂 You can also filter your resultset by querying the trace file directly - i.e.
BEGIN TRY
DECLARE @enable int
SELECT TOP 1 @enable = CONVERT(int,value_in_use) FROM sys.configurations WITH(NOLOCK) WHERE name =...
February 19, 2008 at 10:53 am
NP - the runtime component is available in the package labeled "Microsoft SQL Server 2005 Backward Compatibility Components". Have you installed this as well?
February 19, 2008 at 10:49 am
Viewing 15 posts - 241 through 255 (of 566 total)