Viewing 15 posts - 1 through 15 (of 15 total)
Thank you sir for reply.
Plz find attached query execution plan.
the database is in oracle.
Thanks.
October 20, 2011 at 12:11 am
Thank you sir. I want like this. Thank you very much.
January 13, 2011 at 7:36 am
Here I have attached actual execution plan
Thanks.
June 23, 2010 at 1:44 am
Hi Experts,
Following is the query as per my old view .
SELECT DISTINCT tbl_Visitor.VisitedDate, tbl_Visitor.Organization, tbl_Visitor.ISP, tbl_Visitor.LocationID, tbl_Visitor.CompanyName, tbl_Visitor.IPAddress,
...
June 23, 2010 at 1:39 am
HI,
My sql query is still executing so that not able to get actual execution plan.
It was running from past 15 min. and able to fetch near about 600 rows only.
June 22, 2010 at 4:42 am
I changed data type to bigint
and applied unique index.
i have attached here new execution plan here.
Thanks
June 22, 2010 at 4:27 am
Thanks..
i am trying with all the changes that u have told me..
Will update you soon..
Is there any other way to join between these to tables as that joins incurs...
June 22, 2010 at 4:15 am
ya.. we can create unique index on StartIP and EndIP.
But this will not solve my problem.
I planned to save ID in organization table in CompanyVistedProfile table when visitor...
June 22, 2010 at 3:49 am
Thanks for reply.
And what about fetching records (Select Query) as I want the organization Name.
Is there any other way with that select query to get records in faster way (as...
June 22, 2010 at 3:37 am
Only Primary Key. No Indexes.
I am fetching all the rows using that above query.
IS any other wat to achieve my target the please tell me.
Thanks
June 22, 2010 at 3:20 am
CREATE TABLE [dbo].[IPLocationDB_Organization](
[ID] [bigint] IDENTITY(1,1) NOT NULL,
[startIP] [nvarchar](100) NULL,
[endIP] [nvarchar](100) NULL,
[organization] [nvarchar](4000) NULL,
CONSTRAINT [PK_IPLocationDB_Organization] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY =...
June 22, 2010 at 2:56 am
HI,
I have to track the visitor details who visited to companies in my database. I am tracking their datails using there Ip address. I converts that IP into...
June 22, 2010 at 2:52 am
I have attached Query execution plan and some rows of tables..
Thanks
June 22, 2010 at 2:48 am
Viewing 15 posts - 1 through 15 (of 15 total)