declare @sd datetime
declare @ed datetime
set @sd =getdate()
insert into 大数据处理
set @ed=getdate()
上面二个时间一减就知道多少时间了。
如果是C#里
Stopwatch stopWatch = new Stopwatch();
stopWatchStart();
插入数据处理
stopWatchStop();
// Get the elapsed time as a TimeSpan value
TimeSpan ts = stopWatchElapsed;
// Format and display the TimeSpan value
string elapsedTime = StringFormat("{0:00}:{1:00}:{2:00}{3:00}",
tsHours, tsMinutes, tsSeconds,
tsMilliseconds / 10);
ConsoleWriteLine("RunTime " + elapsedTime);
举个例子
连接数据库查询表的相关语句:
ClassforName("commicrosoftjdbcsqlserverSQLServerDriver");
Connection conn=DriverManagergetConnection("jdbc:microsoft:sqlserver://127001:1433;DatabaseName=mytest","sa","123");
Statement stmt=conncreateStatement();
ResultSet rs=stmtexecuteQuery("select from userinfo");
while(rsnext())
以上就是关于如何测试服务器数据库是否连接成功全部的内容,包括:如何测试服务器数据库是否连接成功、如何使用swingbench进行oracle数据库压力测试、jmeter怎么测试其他服务器上的测试数据库等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)