Viewing 15 posts - 76 through 90 (of 270 total)
A view, I understood a view was a no no !
Question how can I use a procedure to populate a SELECT ??
November 15, 2010 at 3:12 pm
Thanks..:-) 🙂 🙂
I need to run this over about 20,000 records once per day.
I assume this wont blow up. 😉
Nice stuff...
November 10, 2010 at 9:54 pm
ALZDB, can you have a look at this calculation ..for me...
http://www.sqlservercentral.com/Forums/Topic1019024-1291-1.aspx?Update=1
Thanks 🙂
November 10, 2010 at 8:22 pm
This is more that a running total, its an index calculation, and I have no idea what all article means..
November 10, 2010 at 8:21 pm
Thread closed, thanks !:-)
November 10, 2010 at 7:35 pm
Thanks..
Another complication to add,..if you could be so kind...
Add field :valdiffCum (cumulative difference index)
CREATE TABLE #myTable(
dt DATETIME,
val DECIMAL(12,4),
valdiff DECIMAL(12,4),
valdiffCum DECIMAL(12,4)
)
DECLARE @CumStart DECIMAL(12,4)
SET @CumStart = 100
Add up the valdiff to got...
November 10, 2010 at 5:36 pm
Thats stuff is 1000 miles over my head...
More direct help would be nice...
November 10, 2010 at 4:47 pm
Thanks for that advice, thats something they didnt tell me...
Ok..
November 7, 2010 at 2:55 pm
Roger that !:-)
October 4, 2010 at 3:33 pm
Lutz,
With your method, how does one get monthly data ???
October 4, 2010 at 2:37 pm
Jeff I get an Error when I run your code
FROM dbo.Tally t
INVALID OBJECT !
October 4, 2010 at 2:35 pm
Jeff and or Lutz
If I have data in a table, with a Date as the Primary key.
And data is currently IN ORDER ASCENDING.
If I do a
SELECT * FROM <TABLE>
ORDER...
October 4, 2010 at 1:35 pm
Thanks for the effort lads.
1) NO data on weekends, as NYSE, AMEX and NASD are closed on these days. Lets hope they remain so !
2) Weekly data must end with...
October 4, 2010 at 12:00 pm
Viewing 15 posts - 76 through 90 (of 270 total)