Viewing 15 posts - 14,356 through 14,370 (of 18,923 total)
Did you guys actually try my query??????
August 16, 2005 at 11:21 am
ddl = data definition langage. the script to create the table. If you could switch the clustered index to starttime, endtime, vehiculeid, starttime, endtime. That way you...
August 16, 2005 at 10:15 am
Hmm.. may I ask for the ddl of the tables.
Can you change the clustered index on the tables?
August 16, 2005 at 10:08 am
You can't create the system procs if they are already there... or maybe they are reserved in some way???
Anyways those system procs will recreate themselves when needed.
August 16, 2005 at 10:03 am
Use the script of the last version you saved somewhere an rerun it.
Otherwise you could do a restore of the db on another server, copy that code and replace the...
August 16, 2005 at 10:01 am
Well my first concern is making sure that the provided query can even use indexes. As it is written you'll get scans on any index (assuming you have the...
August 16, 2005 at 9:59 am
You run this query for every line of the main query??????? no wonder it's so slow.
WHERE (tblMerged.StartOdometer 0) AND (tblMerged.StopOdometer 0)
AND (tblMerged.StartTime >= @StartTime)
AND (tblMerged.StopTime <=...
August 16, 2005 at 9:31 am
I haven't seen any of those hit 100, but I agree that this is a odd one.
August 16, 2005 at 9:12 am
Close... it's the 5th thread I see hit 100. Maybe we should ask steve for a run down of the longest threads
August 16, 2005 at 9:00 am
Newbies take longer to understand... espicially with such a large code with asp 6.
August 16, 2005 at 8:57 am
Wanted to tell him that but that thread is opened 5 times/week so one less time shouldn't hurt anyone
.
August 16, 2005 at 8:55 am
This is a code generating software I built a while back. It's tested and works perfectly, not to mention lightning fast, but the formatting is obviously multi line. ...
August 16, 2005 at 8:54 am
Forgot that one :
Set MyParam = SERVER.CREATEOBJECT ("ADODB.Parameter")
August 16, 2005 at 8:52 am
IF Object_id('fnSplit_Set') > 0
DROP FUNCTION dbo.fnSplit_Set
GO
IF Object_id('Numbers') > 0
DROP TABLE dbo.Numbers
GO
CREATE TABLE dbo.Numbers (PkNumber int identity(1,1), dude bit null, CONSTRAINT Pk_Number PRIMARY KEY CLUSTERED (PkNumber))
GO
INSERT INTO dbo.Numbers (dude)
SELECT NULL...
August 16, 2005 at 8:51 am
Sure thing.. just make sure you actually do what I ask and you'll be fine
.
August 16, 2005 at 8:49 am
Viewing 15 posts - 14,356 through 14,370 (of 18,923 total)