由买买提看人间百态

topics

全部话题 - 话题: sqlquery
(共0页)
m********0
发帖数: 2717
1
The thing is the it's not a graph for any stock. I just make it with the
following R code,
require(TTR)
ret<-cumsum(rnorm(252,sd=0.036))
ret2<-exp(ret)
p<-50*ret2
ma20<-SMA(p,20)
ema20<-emaTA(p,20)
ema50<-emaTA(p,50)
plot(p, type="l")
lines(ema20, type="l",col='green')
lines(ema50, type="l",col='red')
and I used lognormal distribution for the returns, textbook assumptions
for
a big group of models.
skeptic(as exists everywhere), yes, I borrowed this idea from ET. Please
don
't rush to criticize,... 阅读全帖
n**********e
发帖数: 1
2
来自主题: Database版 - 遇到sql 的日期型字段不会使用
使用asp 和foxpro 相结合对数据库进行管理,源程序如下


欢迎使用


<%
set cn=Server.CreateObject("ADODB.Connection")
cn.open "tt_vfp"
sqlquery="select * from ttp where 工序号='TC15'"
set rs=cn.execute(sqlquery)
'rs.movefirst
%>

<%i=1%>
<%do while not rs.eof%>






<%newvar=rs.fields("日期")%>

<%
i=i+1
r
<%=i%> <%=rs.fields("工作单")%> <%=rs.fields("工序号")%> <%=rs.fields("录入人")%> <%=rs.fields("日期")-3%> <%=newvar%>
e****c
发帖数: 10
3
来自主题: Database版 - My SQL and Crystal report
Now I try to migrate my Visual Basic Application from MS SQL to My SQL, but i
met problem when i use crystalreport which connects My SQL . Below is my code:
CrystalReport1.Connect = "DSN=TestDB;uid=amy;pwd="
CrystalReport1.Destination = 0 ' 0-window 1-printer
CrystalReport1.ReportFileName = CrystalReportDir &
"\CrystalReport\Tracking\test.rpt"
sql = "select * from Score"
CrystalReport1.SQLQuery = sql
CrystalReport1.Action = 1
When this program execute the last line of code, following error
l******0
发帖数: 244
4
来自主题: Java版 - java后端开发
小网站,觉得可先从 core java/servelet/html/jsp/css 开始。以后如果觉得有需要
,复杂性没法管理,再研究上 framework。 这些东西都有 pros and cons, 确实需要
才用。
引用一个帖子中的抱怨,当然也有很多支持的。

Used to be we wrote simple, efficient, fast applications and web services
using just core Java, Servlets and JSP, html and xml, JDBC API. It was good
enough; JUnit was a good tool to test. We rested easy that our code worked.
Hibernate came along to simplify SQL and enable true mapping of Database
tables with Java objects, allowing hierarchical relationships to b... 阅读全帖
e********2
发帖数: 495
5
Hibernate:
List cats = session.createSQLQuery("select * from t1, t2").addEntity("
cat.class").list();

cats中每个object和session有联系吗?如果cat中有food object,Lazy fetching能用
吗?

如果第一个*是由t1,t2中的几个field组成的,是不是cat必须有相应的constructor
w*m
发帖数: 1806
6
for example,
#/!bin/csh
sqlplus -silent id/password@oracel_instance < "%s",$1;}' | echo(I want to set xx=..)
select id from table;
EOF
awk处理后的结果,如何赋值给一个变量呢?
S*A
发帖数: 7142
7
不会用 csh.
bash 里面大概是
varname=`sqlplus -silent id/password@oracel_instance < printf("%s",$1;}'
"%s",$1;}' `

printf(
l*******G
发帖数: 1191
8
use ` ` or $()
such as
varname=$(sqlplus -silent id/password@oracel_instance < echo $varname
v*****r
发帖数: 1119
9
1. 简单的 query, 直接在 query 里dynamic赋值
sqlplus -silent id/password@oracel_instance < select 'foo='id from table;
...
EOF
2.复杂的 Query ,re-direct here document output to a temporary file and awk
the temporary file
sqlplus -silent id/password@oracel_instance < tempfile
select column1,column2...,columnN from table;
...
EOF
awk .... tempfile

printf(
s********k
发帖数: 6180
10
来自主题: Programming版 - Querying JSON in Postgres
为什么把analytics坑了,你意思是开发直接上JSON方便但是后面analytics用SQLquery
就不方便了?
g********s
发帖数: 3652
11
他们知道这是常见手段,但是具体是那些商家就要去数据库找出来
我觉得这是SQLquery 还算不上data mining 吧。
data mining比这个要复杂很多吧,要有高深数学。
q**j
发帖数: 10612
12
来自主题: Statistics版 - 请问如何用R download大数据文件。
以前用R下载一个大的数据from SQL database with RODBC package. 但是下载了一半
就fail了。我以为R不能够干这个事情。可是最近看了一个matlab的code。和R有类似问
题。解决办法就是每次下载一部分,然后再拼起来。请问R可以这样搞吗?如何写code?
我failed的code是这个样的:
library(RODBC)
Connection=odbcConnect("xxx;uid=yyy;pwd=zzz")
S=(c("select *from warehouse..tablex"))
Link=sqlQuery(Connection,S)
这样对小文件可以,大文件就不行。
m*******l
发帖数: 621
13
我有一个写好的sql code,需要在R里面run出结果。
这个code很长,我不想把一整段code 贴在程序里面,
请问,我应该怎么样把这段code从我的local folder读进来,然后run sqlQuery命令?
谢谢!!
q**j
发帖数: 10612
14
来自主题: Statistics版 - RODBC package
This is my code for connecting to sql 2005
library(RODBC)
Connection = odbcDriverConnect("Driver=SQL Server;Server=;
Initial Catalog=;Integrated Security=SSPI;UID=;PWD="
)
Q = paste("your statements",
sep = "")
Link = sqlQuery(Connection,Q)
close(Connection)
q**j
发帖数: 10612
15
来自主题: Statistics版 - 有谁对SAS和R都懂得吗?
library(RODBC)
Connection = odbcDriverConnect("Driver=SQL Server;Server=xxx;
Initial Catalog=xxx;Integrated Security=xxx;UID=xxx;
PWD=xxx")
Q = paste("select x from y "")
Link = sqlQuery(Connection,Q)
close(Connection)
(共0页)