Viewing 15 posts - 1,696 through 1,710 (of 1,825 total)
Small correction...
with cteResursive(BaseRecordId,RecordID, ParentRecordID, Credit)
as
(
Select RecordId,RecordId,ParentRecordId,Credit
from yourTab
where ParentRecordId is null
union all
...
July 14, 2009 at 7:08 am
Ahhh them were the days , a CGA card, floppy disks, 286 processors.
July 14, 2009 at 6:16 am
Off the top of my head....
with cteResursive(BaseRecordId,RecordID, ParentRecordID, Credit)
as
(
Select RecordId,RecordId,ParentRecordId,Credit
from yourTab
where ParentRecordId is null
...
July 14, 2009 at 6:11 am
IIRC it wasnt a turbo button , it was a 'go-slow for compatibility' button. I think 'turbo' is a better marketing term though
July 14, 2009 at 2:56 am
jcrawf02 (7/13/2009)
Paul White (7/13/2009)
GilaMonster (7/13/2009)
Done, apparently, because 'null' is faster than NULLBut only if you use little letters (less aerodynamic drag = faster!)
...then he should use cursive...
i think he already...
July 13, 2009 at 11:32 pm
GilaMonster (7/13/2009)
I was referring to one of the other of his threads, the one that Dave posted.
SELECT <lots> FROM <somewhere> WHERE tatcalltype = 'null' AND <other conditions>
Done, apparently, because 'null'...
July 13, 2009 at 3:42 pm
one question is
which one is faster?????????
select * into
or insert into
Select into will be faster if 'select into/bulkcopy' is set in sp_dbOption as it will be a non-logged operation.
July 13, 2009 at 9:24 am
My First thoughts are to create a nightly , 'Year to date' table of the summarised data.
Obviously 99% of the users have no updates throughout the day so...
July 13, 2009 at 8:44 am
Since you are returning ALL the Records , indexing cannot help.
SqlServer is executing the query as fast as it can, Its now going to be a hardware issue if...
July 13, 2009 at 8:19 am
Time for some row counts
select count(*) from AuditData
go
select count(*) from AuditData where TATCallType = 'null'
go
select count(*) from AuditData where Calltolen=12
go
select count(*) from AuditData where CallTo like...
July 13, 2009 at 8:07 am
Hi ,
when it says
Select * from sysobjects
you are supposed to do your query
July 13, 2009 at 7:28 am
You can lead a horse to water but you cant force him to drink
http://www.sqlservercentral.com/Forums/Topic751918-8-2.aspx?Update=1
July 13, 2009 at 7:18 am
That is not what is required.
Please read the article http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
July 13, 2009 at 7:17 am
Please post the query plan as per this[/url] article.
We are just guessing at what may help you. With the query plan we may know what will help you
July 13, 2009 at 6:58 am
Heres my thoughts....
You seem to care a lot about the length of AuditData.CallTo , add a column to AuditData and update it with the value. Add an index...
July 13, 2009 at 6:21 am
Viewing 15 posts - 1,696 through 1,710 (of 1,825 total)