Viewing 14 posts - 16 through 29 (of 29 total)
Validation: I want to actually check whether the *.txt file is actually a text file(because in some cases a user may send an excel file as a *.txt file)
July 7, 2011 at 10:16 am
THe only difference i notice(from profiler trace) is failed Login's has a Database Name of master and successful Login attempt has the correct database Name....(Somehow sql server is using Master...
May 20, 2011 at 2:54 pm
Here is the exact error message i get
Login failed for user 'xyz'. Reason: Password did not match that for the login provided. [CLIENT: client ipaddress]
It sounds pretty weird.... In...
May 19, 2011 at 6:23 pm
Thanks i was actually able to catch the login Failure in the profiler...But couldn't figure out which part of application is causing the login failure event.....How do i actually trace...
May 19, 2011 at 10:07 am
Cln_ServiceInstpayer does have a clustered index but it's not being used in this query......that table has around 30 million records
April 22, 2011 at 3:14 pm
here are the index definitions
ALTER TABLE [dbo].[cln_ServiceInstance] ADD CONSTRAINT [PK_cln_ServiceInstance] PRIMARY KEY CLUSTERED
(
[ServiceInstKey] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF,...
April 22, 2011 at 2:41 pm
Here i am updating CPEReleaseID and DateUpdated on Instpayer table and in the where clause i m filtering data based upon DeleteStatus, CPEThresholdID, payerID....So i thought creating a non clustered...
April 22, 2011 at 1:18 pm
But is it advisable to create index on a table which is involved in the update process(I guess index defragmentation will be more)
April 22, 2011 at 12:51 pm
Here are the Execution times and Scans before and after creating indexe's
Before the creation of index
SQL Server parse and compile time:
CPU time = 0 ms, elapsed...
April 22, 2011 at 12:09 pm
Here is the query i was working on
UPDATE p
SET p.CPEReleaseID = @CPEReleaseID,
p.DateUpdated = getdate()
FROM Cln_ServiceInstPayer p WITH (NOLOCK)
INNER JOIN Cln_ServiceInstance i WITH (NOLOCK) ON p.ServiceInstKey = i.ServiceInstKey
INNER JOIN is_CPERelease cpe...
April 22, 2011 at 10:40 am
Here is the query i was working on
UPDATE p
SET p.CPEReleaseID = @CPEReleaseID,
p.DateUpdated = getdate()
FROM Cln_ServiceInstPayer p WITH (NOLOCK)
INNER JOIN Cln_ServiceInstance i WITH (NOLOCK) ON p.ServiceInstKey = i.ServiceInstKey
INNER JOIN is_CPERelease...
April 21, 2011 at 7:27 pm
Please find the attachment for execution plan
June 7, 2010 at 5:47 am
Right now i have only clustered indexes on the primary keys
June 6, 2010 at 11:42 pm
Viewing 14 posts - 16 through 29 (of 29 total)