Спасибо, с датой всё получилось!
Теперь как мне с таблицей быть, если я создаю не в tempdb, а в отдельной базе. Пока при повторном уложении таблицы в базу выдает:
set nocount on
if exists (select * from uz..sysobjects where id=object_id('uz..#MyTableOsn') and sysstat & 0xf = 3 )
drop table #MyTableOsn;
create table #MyTableOsn (KOD char(9), MANAGER char(25), CITY char(20), POST char(9), SROK numeric(3,0), ABC char(9), XYZ char(9), OST numeric(15,3), DIN numeric(15,4),
SZ numeric(15,2), RN numeric(15,0), MIN numeric(15,3), MAX numeric(15,3), DOP numeric(15,2), DEN char(8)/*,*//*column_definition*/)
set nocount off
******************************************************************
insert into #MyTableOsn values(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?/*,*//*?*/)
Ошибка:
рс_.ВыполнитьИнструкцию(СтрЗаменить(ТекстЗапроса,"%Имя%",ИмяТаб));
{C:\1SBASES\COPYS\USR36\УЛОЖИТЬ В БАЗУ.ERT(86)}: State 42S01, native 2714, message [Microsoft][ODBC SQL Server Driver][SQL Server]There is already an object named '#MyTableOsn' in the database.