`
文章列表
/*含有字母或数字*/ select * from TabName where FieldName like '%[A-Z]%' OR FieldName like '%[0-9]%' /*含有汉字 len返回的是字符数 datalength返回的是字节数 */ select * from TabName where len(FieldName)<>datalength(FieldName)
将字符串中从某个字符开始截取一段字符,然后将另外一个字符串插入此处   select stuff('hi,world!',4,4,'****') --返回值hel****orld!   --返回从指定位置开始指定长度的字符串   select substring('Hello,World!',2,10) --返回值ello,World   --将字符串中某段字符替换为指定的字符串   select replace('hi,world!','ll','aa') --返回值heaao,world!   --去除字符串中左面的空格   select ltrim(' hi,worl ...

sqlserver锁表

select   request_session_id   spid,OBJECT_NAME(resource_associated_entity_id) tableName   from   sys.dm_tran_locks where resource_type='OBJECT' declare @spid  int Set @spid  = 154 --锁表进程 declare @sql varchar(1000) set @sql='kill '+cast(@spid  as varchar) exec(@sql)
create function f_CID15to18 (@sfz char(18)) returns char(18) as begin declare @osfz varchar(18) declare @i int,@ai int,@wi int,@sum int,@mod int,@result int set @osfz = @sfz set @sum = 0 IF len(@osfz) = 15 begin set @osfz = ...
import java.io.BufferedInputStream; import java.io.BufferedReader; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; impo ...
如何利用SQL查询语句从SQLSERVER数据库中导入导出EXCEL表格 平常从SQLSERVER中进行导入导出时,我们利用SQLSERVER中自带的DTS转换工具即可,很方便。但有些特殊的用法需要用语句进行导入导出,工作中碰到这种情况,查了些资料,下面详细介绍: 一、从excel表导入到SQLSERVER use test go select * into test_table from OpenRowSet('microsoft.jet.oledb.4.0','Excel 8.0;HDR=yes;database=c:\11.xls;','select * from [结果$]') ...
输入表名,生成插入语句 if exists (select * from sysobjects where type='p' and  name='UspOutputData')       drop proc UspOutputData   GO   CREATE PROCEDURE dbo.UspOutputData    @tablename sysname    AS    declare @column varchar(2000)    declare @columndata varchar(2000)    declare @sql varchar(8 ...
import java.io.DataInputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.util.ArrayList; import java.util.List; i ...
声名:a,b ,都是表 --b表存在(两表结构一样)insert into b select * from a 若两表只是有部分(字段)相同,则 insert into b(col1,col2,col3,col4,...) select col1,col2,col3,col4,... from a where... 把表a插入到表b中去。 --b表不存在select * into b from a // select (字段1,字段2,...) into b from a
<html> <head> <SCRIPT LANGUAGE="JavaScript"> function www_zzjs_net() { document.form1.day.value = ""; document.form1.month.value = ""; document.form1.year.value = ""; document.form1.age.value = ""; document.form1.months ...
http://wenku.baidu.com/view/1626acdb6f1aff00bed51e31
J2ME CDC(Connected Device Configuration,连接式设备配置集) 使用CVM,面向那些具有更强计算能力的嵌入式设备,包含了Java类库的核心部分,是应用Java技术在嵌入式设备上进行开发所需类库的最小集合。 它具有如下优点: 高级网络特性:CDC位基于套接字的网络编程技术提供了最新Java API 满足Jini技术的需求:基于CDC远程方法调用(RMI)可选包可实现对基于完全Jini技术的设备支持。 方便的移植:CDC的Foundation Profile(基础描述集)核心类库包括了广为使用的java.lang、java.net、java.io、java.uti ...

JAVA桌面截图

    博客分类:
  • JAVA
         Robot robot = new Robot();    //要捕捉的屏幕显示范围,下面以全屏示例说明   Rectangle rect = new Rectangle(Toolkit.getDefaultToolkit().getScreenSize()); BufferedImage bm = robot.createScreenCapture(rect);          File file = new File("c:/sys.jpg"); FileOutputStream   outputstream = new FileO ...
import java.io.*; public class ReadFile {   public static void main(String[] args) {   String strFile ="c:/app.txt";       File file = new File(strFile);     try {       // Create a buffered reader to read each line from a file.       BufferedReader in = new BufferedReader(new FileReade ...

JNDI配置

http://nnbchuang.iteye.com/blog/1407400
Global site tag (gtag.js) - Google Analytics