Viewing 15 posts - 1 through 15 (of 21 total)
Yes its SSRS.
Thanks for the reply.
October 7, 2010 at 7:55 am
I have executed 'include execution plan' its taking lot of time, I guess it would days to execute the query.
October 5, 2010 at 5:33 am
TABLE DEFINITION :
TABLE 1:
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[TABLE1](
[intStatus] [int] NOT NULL,
[intEmailID] [int] NOT NULL,
[intStatusID] [tinyint] NOT NULL,
[AgentID] [int] NOT NULL,
[Updated] [int] NOT NULL,
[Comment] [varchar](1500) COLLATE SQL_Latin1_General_CP1_CI_AS...
October 5, 2010 at 3:58 am
stewartc, Thanks for reply. it worked
dateCreation ,intEmailID only these 2 columns have non clustered index.
How can the query be optimized further.
October 1, 2010 at 11:41 am
SAMPLE CODE :
SELECT
ltr.intEmailID, ltr.strWanNumber, ltr.intPageCount,DATEADD(hh, 1, ltr.dateCreation) AS dateCreation,
stat.intStatus, ISNULL(stat.strComment, '') AS strComment,DATEADD(hh, 1, stat.dateUpdated) AS dateUpdated, stat.intStatusID,
intIVaultStatus, IVaultStatusDesc,
tmp.strMSPEmailId, tmp.strName
FROM
dbo.TABLE1 AS stat INNER...
October 1, 2010 at 8:20 am
The package on both the machines are different but have the same functionality with diffrent sql connection.
the common is the asp.net code on both the machines
September 7, 2009 at 10:50 am
This particular code executes properly when executed on 32 bit windows 2003 with no errors
Its throwing error on 64 bit machine only.
package functionality is importing excel data into sql database......
September 7, 2009 at 6:04 am
These are the following Errors :
Error is SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred.Error code: 0x80040E4D.
An OLE DB record is available. Source: "Microsoft SQL Native...
September 7, 2009 at 2:49 am
These are the following errors I am getting...
2009-09-05 09:55:52 W3SVC1 10.0.0.11 POST /Default.aspx - 80 - 10.0.0.11 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+WOW64;+SV1;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.4506.2152;+.NET+CLR+3.5.30729) 401 1 0
2009-09-05 09:55:52 W3SVC1 10.0.0.11 POST /Default.aspx - 80 Administrator 10.0.0.11...
September 5, 2009 at 4:28 am
I have kept the SSIS logging on but since the package is not getting executed logging is also not done...
September 4, 2009 at 11:51 am
I have put the code under try catch but then also I am not getting any error...
Its really frustrating
September 4, 2009 at 11:16 am
Yes I can in Asp.net but the requirement is to be done is Sql server
August 19, 2009 at 12:38 am
Viewing 15 posts - 1 through 15 (of 21 total)