- 博客(14)
- 资源 (3)
- 收藏
- 关注
转载 MDX 函数参考 (MDX)
Microsoft SQL Server Analysis Services 允许在多维表达式 (MDX) 语法中使用函数。函数可以在任何有效的 MDX 语句中使用,并且经常用于查询、自定义汇总定义以及其他计算。数组函数函数 说明 SetToArray (MDX) 将一个或多个集转换为数组,以便在用户定义函
2009-11-13 12:34:00
653
转载 使用ADOMD.NET建立与Analysis Services的连接
Microsoft SQL Server ADOMD.NET支持在托管应用程序中的多维数据访问。ADOMD.NET使用XMLA(XML for Analysis)协议与服务器进行通讯。使用ADOMD.NET访问服务器,必须满足一下需求:系统需求: CPU Intel (Pentium 133 MHz or higher, Pentium PRO, Pentium II, or
2009-11-12 10:39:00
827
1
转载 Structure of the Basic MDX Query
To specify a dataset, a Multidimensional Expressions (MDX) query must contain the following information: The number of axes (up to 128) The members from each dimension to include on each axis
2009-11-12 10:23:00
546
转载 Comparison of SQL and MDX Syntax
Comparison of SQL and MDX SyntaxThe Multidimensional Expressions (MDX) syntax is similar to the syntax of Structured Query Language (SQL). In many ways, the functionality supplied by MD
2009-11-12 10:08:00
576
原创 回文判断
#include#includevoid main(){ char str[80]; int i; int n; printf("请输入字符串:/n"); gets(str); n = strlen(str); for(i=0;i { if(str[i] != str[n-1-i]) { break; } } if(i==n/2) { printf("是回文!/n"); }else {
2009-10-17 16:31:00
279
原创 菱形输出
#include main(){ int n,k=65,i,j; //n行数,k用来输出的字符的ascii码 do { printf("/n请输入行数:"); scanf("%d",&n); if(n>0) { if(n>26) n=26; for(i=0;i { for(j=0;j printf(" "); for(j=0;j prin
2009-10-17 16:28:00
365
原创 数组插入
#include main(){ int a[11]={12,23,43,45,56,65,67,78,79,99}; int i,j,num; i=0; // 输出插入前的原数组元素 printf("插入前的数组是:"); for(i=0;i { printf("%d,",a[i]); printf(""); } // 输入你想插入的整数 printf("/n/n请输入要插入的整数: "
2009-10-17 16:27:00
610
原创 进制转换
#includevoid ten_to_two();void ten_to_eight();void ten_to_sixteen();void main(){ int i;//功能选项 printf("0:return/t1:ten_to_two/t2:ten_to_eight/t3:ten_to_sixteen/n请选择功能项:"); scanf("%d",&i); if(i==0) { r
2009-10-17 16:25:00
348
原创 过滤器过滤乱码
package com.xy.filter;import java.io.IOException;import javax.servlet.Filter;import javax.servlet.FilterChain;import javax.servlet.FilterConfig;import javax.servlet.ServletException;import javax.s
2009-10-17 16:19:00
390
原创 文件、图片上传
package com.t59.action;import java.io.File;import java.util.ArrayList;import java.util.Date;import java.util.Iterator;import java.util.List;import javax.servlet.http.HttpServletRequest;import or
2009-10-17 16:17:00
448
原创 文件读写(xml)
using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.We
2009-10-17 16:12:00
312
原创 图片水印
using System;using System.Data;using System.Web;using System.Collections;using System.Web.Services;using System.Web.Services.Protocols;using System.IO;using System.Drawing;using System.Text;namespac
2009-10-17 16:09:00
401
原创 简单ajax代码。
//将用户输入异步提交到服务器function ajaxSubmit(){ //获取用户输入 var question=document.forms[0].question.value; //创建XMLHttpRequest对象 var xmlhttp; try{ xmlhttp=new XMLHttpRequest(); }catch(e){ xmlhttp=new ActiveXOb
2009-10-17 15:58:00
300
Java 2 Platform Standard Edition 5.0 的 API 规范。
2009-10-17
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人