Viewing 15 posts - 57,976 through 57,990 (of 59,066 total)
At the risk of sounding a bit snippy (don't mean to)... the best performance enhancement tool is your brain. You've already isolated which procs are running slow... look for and...
July 23, 2006 at 5:45 pm
Absolutely agree on the proper use of a correctly indexed temp table.
July 23, 2006 at 5:24 pm
Jimmy...
Can't use just 60... that would imply integer math. It has to be 60.0 to imply that it's a float calculation with decimal places. I also believe that "value" is...
July 23, 2006 at 8:40 am
Ack... my fault... I'm so data-centric that I sometimes forget that SQL Server has to live on a Windows server (except for MSDE, Development Edition, etc).
Nope, I don't know how...
July 22, 2006 at 7:52 am
Nice code... just a bit of food for thought, though... correlated sub-queries with triangular joins (a<b) can be as bad or worse than cursors on large tables. Not advocating cursors...
July 22, 2006 at 12:08 am
It's not free but you could buy SQL Server Developer's Edition for about 64 bucks if you look around.
July 21, 2006 at 7:37 pm
Noeld probably hit the nail on the head... the server should be much faster than your desktop machine for multiple reasons...
1. Memory... chances are your desktop computer has between 512Mb...
July 21, 2006 at 7:34 pm
Mick,
Yes... you can save pictures in IMAGE datatypes... but it's a really bad thing to do for more reasons than I'd care to post here...
Most folks have seen the light...
July 21, 2006 at 7:17 pm
TempDb is rebuilt from the ground up on a reboot... this does the trick...
SELECT CrDate AS LastRebootDate
FROM Master.dbo.SysDatabases
WHERE Name = 'TempDB'
July 21, 2006 at 7:01 pm
Vamsi,
Although there's nothing specific about using character arrays to process the W, o, r, d, s, could you be a bit more specific about what you are trying to do? There's...
July 21, 2006 at 6:52 pm
If the suppliers of the data have agreed to provide the data with correct row delimiters,
I guess I don't need to do much. Too bad... I was "dying" to...
July 21, 2006 at 6:49 pm
Scott,
Post the first 10 records of data (including the header) and let me take a crack at it tonight for ya... I think there may be a couple of ways...
July 21, 2006 at 7:36 am
Prakash,
Serqiy is, although a bit brusk, still absolutely correct. Why do you need a cursor at all? And building one dynamically is like the worst of two worlds. Why can't...
July 21, 2006 at 7:31 am
Thanks, DC and Ieea,
I always thought cursors were a part of SQL Server... didn't know they were actually added as a "feature"
at...
July 21, 2006 at 5:57 am
Viewing 15 posts - 57,976 through 57,990 (of 59,066 total)