错误消息: Msg 1105, Level 17, State 2, Line 266Could not allocate space for object 'dbo.Large Object Storage System object: 422392492982272' in database 'tempdb' because the 'PRIMARY' filegroup is full. Create disk space by deleting unneeded files, dropp…
1 --查询时间范围内的数据 select * from dbo.point where wtime >'2014-05-01 23:59:59' and wtime< '2014-05-02 00:40:42.000' delete from point where wtime >'2014-05-01 23:59:59' and wtime< '2014-05-02 00:40:42.000' --查询时间范围内的数据,并插入到临时表中 select * into a_temp…
col tablespace_name for a10 col file_name for a50 col bytes ,, select tablespace_name,file_name,bytes from dba_data_files order by tablespace_name; col owner for a10; col segment_name for a30; col segment_type for a20; select segment_type,segment_nam…