Viewing 15 posts - 46 through 60 (of 67 total)
so there is no way of running a query every 1 second from withn sql?
November 15, 2007 at 8:40 am
the sql database is tracking stockmarket volume's traded on stocks.
And is for use in a charting package
excel is likes the charting package to sql via a query
so i use excel...
November 14, 2007 at 9:03 pm
sorry I am running express 2005 edition
any advise please?
Jon
October 22, 2007 at 8:04 am
ok solved it
September 25, 2007 at 3:11 pm
so i dont think i need inner join just then between
rsRecordset3.Open "SELECT AVG(s.ESDSTotal) AS ESDSTotal FROM dbo.DemandSpread s BETWEEN DATEADD(mi, -1, " & "'" & DSMAXTS & "'" & ")...
September 25, 2007 at 1:39 pm
These 2 statements work its the between statement thats not
So I find it here:
rsRecordset7.Open "select TIMESTAMP from DEMANDSPREAD WHERE TIMESTAMP=(SELECT MAX(TIMESTAMP)FROM DEMANDSPREAD)",
gcnConnect
DSMAXTS = rsRecordset7.Fields(0).Value
rsRecordset7.Close
and add it into the statement:
rsRecordset.Open "select...
September 25, 2007 at 1:35 pm
I record it as a string so its works on the first statement as I send thru the where timestamp statement as a string, which matches the timestamp in sql...
September 25, 2007 at 1:33 pm
I am running a few queries from excel into sql on a timed bases i open and close each one before the next, how does an index work over a...
September 21, 2007 at 10:36 am
i could fill what i know on a stamp
September 21, 2007 at 10:12 am
rsRecordset.Open "select ESDSTotal,ER2DSTotal,ESASKSIZE,ESBIDSIZE,ER2ASKSIZE,ER2BIDSIZE,ER2RATIOASK,ER2RATIOBID,ESRATIOASK,ESRATIOBID,ESNETR,ER2NETR from DEMANDSPREAD WHERE TIMESTAMP=(SELECT MAX(TIMESTAMP)FROM DEMANDSPREAD)", gcnConnect
Sheet1.Range("A15") = rsRecordset.Fields(0).Value
Sheet1.Range("B15") = rsRecordset.Fields(1).Value
...
September 21, 2007 at 10:11 am
is there a way of looking at memory usage with out perfmon
September 21, 2007 at 8:49 am
How much memory do you have on your server? 2GB , by the end of the day is normally 1gb still free
What service pack of SQL 2005 do you have?...
September 21, 2007 at 8:48 am
so i execute that query inside sql server only once?
can i create a index without a t-sql statement?
nad how will that change my query to search?
September 21, 2007 at 8:27 am
this time on setup i set all users to dbo, i think previously i clicked a different button on setup and had logins with different perms on the data base,...
September 20, 2007 at 1:18 pm
Viewing 15 posts - 46 through 60 (of 67 total)