Viewing 15 posts - 1 through 15 (of 17 total)
Look outside the jungle, all answer must be just depending on each person {:-(
June 13, 2008 at 6:52 am
Sorry but your explanation is incompatible with the answer.
April 3, 2008 at 4:34 am
Hi,
The current compatibility level is 90.
Msg 209, Level 16, State 1, Line 1
Ambiguous column name 'PlanEnt'.
This is my check....
March 31, 2008 at 3:17 am
It's normal because of multi-choice.
You must compute from the total for each individual choice.
February 8, 2008 at 2:58 am
remove your identity column output before the import operation
January 24, 2008 at 2:29 am
Yes it's no sense for a DB owner but in a database you are some other user and you can specify different right for each, therefore it's easier with the...
January 21, 2008 at 12:01 am
I think you need to create a batch and execute them after the installation.
January 17, 2008 at 11:14 pm
If you have not other user group as the default (administrators,Users,...) It's already possible to create the login on the groups.
January 17, 2008 at 6:54 am
Which tools you use to create your file?
January 10, 2008 at 3:24 am
You must be carrefull with the cursor, In fact the performance can degrade if you use cursor frequently.
January 7, 2008 at 11:14 pm
For me each transaction is independent therefore you must check each and rollback only the transaction failed.
January 7, 2008 at 11:02 pm
Use a cursor :
SET NOCOUNT ON
DECLARE @vendor_id int, @vendor_name nvarchar(50),
@message varchar(80), @product nvarchar(50)
PRINT '-------- Vendor Products Report --------'
DECLARE vendor_cursor CURSOR FOR
SELECT VendorID, Name
FROM Purchasing.Vendor
WHERE PreferredVendorStatus = 1
ORDER...
January 7, 2008 at 5:54 am
You can try to use System.Data.SqlClient.SqlTransaction object and execute all sp into the same transaction context.
If you catch an error you can rollback all change into the transaction context.
January 7, 2008 at 12:19 am
You can use the System.Diagnostics.Debug object to send value into output windows (or console object if you work with a console project).
Or you can filled in a datatable.
January 7, 2008 at 12:14 am
Viewing 15 posts - 1 through 15 (of 17 total)