Viewing 12 posts - 151 through 162 (of 162 total)
I tested it on SQL2k SP4. The recovery mode is set to Simple.
The Rollback works and retrieves all the records.
You probably need to test again please.
Try the SQL that...
November 15, 2002 at 8:16 am
It is SQL2k and the recovery mode is set to Simple.
Thanks...
November 14, 2002 at 5:28 pm
Pls explain this.
I had a truncate and an insert statement enclosed in a transaction.
QUOTE
BEGIN TRANSACTION
truncate table mastersmi2
insert into mastersmi2
select top 10 * from mastersmi
ROLLBACK TRANSACTION
UNQUOTE.
I was able to retrieve all...
November 14, 2002 at 2:36 pm
You could use a stored procedure. In the stored procedure make all the SQL statements (Truncate & Import ) part of a transaction. See if that works.
November 12, 2002 at 2:18 pm
Instead of "IF IsNull(v) Then"
Try using "If v = "" then"
October 31, 2002 at 9:57 am
Never seen this error before. Are you getting this error message on Selecting Import option from the Drop Down menu?
October 30, 2002 at 10:45 am
Please be a little bit more specific as to where you want to see the description.
October 29, 2002 at 5:21 pm
Do a database import. Choose the Data Source Type to "Microsoft Access", select the aceess .MDB file. set the user name and paswword. Similary specify the destination to SQL server....
October 23, 2002 at 4:40 pm
You can use the DTSPackage Library. The DTS Package Library exposes objects that can be invoked using VB code in Access to execute the DTS packages. Refer to SQL Books...
October 21, 2002 at 5:09 pm
Viewing 12 posts - 151 through 162 (of 162 total)