Viewing 15 posts - 31 through 45 (of 67 total)
Sorry GilaMonster, miss use of words. But i do get what you said.
Happens when I have 100s of things to do at the same time. 😀
February 2, 2010 at 7:59 am
Gila like I stated to Jeff, the function is not a must. See it as n lazy and resource expensive way of writing the query. The join is faster...
February 2, 2010 at 7:07 am
You are right Jeff. removing the RBAR UDF from the query and using a simple join does make the query almost 60% faster.
Just to clarify the use of those look-up...
February 2, 2010 at 6:40 am
Execution Plan for Query:
SELECT * FROM DATAS.tblDailyData
WHERE dbo.fnLKPInstrumentExchangeKey(InstrumentKey) = 4 AND DateKey = 20100101
I had to to make the where clause tak date into account otherwise it would have...
February 2, 2010 at 3:23 am
Not necessarily. Usually the CL column is the only one 60% of our users are interested in. But the more advanced users prefer to use Op, Cl, Hi, Lo, VWAP...
February 2, 2010 at 2:56 am
GilaMonster (2/2/2010)
roelofsleroux (2/2/2010)
February 2, 2010 at 2:49 am
dbo.fnLKPInstrumentExchangeKey is used to find the ExchangeKey of an instrument whether it is JSE, LSE, NYSE.
Its basically to avoid JOIN statements. I have a suspicion that it could have and...
February 2, 2010 at 2:44 am
Just to add to all the info
Me and my System Administrator had a look at the server that runs SQL Server.
The Virtual Memory is set to 2GB out of the...
February 2, 2010 at 2:28 am
Hey you all
Sorry about the delay, internet problem.
Right!
To answer all your questions:
Gail: I have attached screenshot of the table structure, and execution plan for the following query
[font="Courier New"]SELECT *...
February 2, 2010 at 2:10 am
SERVER SPECS:
HP ProLiant ML350
2x Intel Xeon 2.50GHZ processors
4GIG RAM
I have reorganized, rebuild the index and even after that it still shows no change.
February 1, 2010 at 4:40 am
The Total Fragmentation is currently 15.2%.
I have to add that last week over 10,000,000 was added with SSIS package from 1500 csv files.
February 1, 2010 at 2:48 am
I kinda crashed our SQL Server using a [font="Courier New"]INSERT INTO tblX SELECT FROM tblY[/font] method. Haha!
After damage control, I decided to take a safer approach by using SSIS ......
January 26, 2010 at 11:55 pm
The data I'm working with is Stock Exchange Closing Prices per Ric
This data will never change again but is used for statistical purposes.
The reason its in a temp table is...
January 25, 2010 at 11:44 pm
I actaully used the following:
"[font="Courier New"]INSERT INTO xxx FROM yyy[/font]"
The statement was running for over 8min when one of the other developers noticed that his connection to SQL Server has...
January 25, 2010 at 3:21 am
Thanks for your replies everyone.
Seems one can always track n problem like this back to Database Design. I adjusted the design of the tables to include specific Grouping ID's that...
January 10, 2010 at 11:23 pm
Viewing 15 posts - 31 through 45 (of 67 total)