Viewing 13 posts - 1 through 13 (of 13 total)
If myUserResponse = "" Then
Main = DTSTaskExecResult_Failure
exit function
End If
This gets both the case where the user enters nothing and the case where they hit cancel. If you...
December 4, 2002 at 3:56 pm
sp_changeobjectowner can be used to change the owner.
Lori
December 4, 2002 at 3:42 pm
If you have successfully run the job, shut down EM and re-open it. I've had it act flaky in the past.
Lori
December 4, 2002 at 1:19 pm
Elno,
I ran the create table statement (you have one column in there twice, so I deleted it), then the three alter table statements. The code completes successfully. What...
December 4, 2002 at 1:17 pm
What you're most likely experiencing is called a broken ownership chain. To prevent this, objects in a chain should be owned by the same user (e.g. table and view...
December 4, 2002 at 12:50 pm
indid = 0 means it is a heap structure.
Lori
December 4, 2002 at 12:28 pm
I created a database and added tables. I created a login that had no permissions on the database, then logged in. The user was unable to access the...
December 4, 2002 at 12:23 pm
You can use the sp_addalias 'login_name', 'name_in_db' syntax to add a user and alias that user to dbo. That user must not currently exist in the database if you...
December 4, 2002 at 12:04 pm
Try right-clicking jobs in EM, then click refresh.
Lori
December 4, 2002 at 11:46 am
Rita,
I just posted a script that will determine the latest backup completion time. The title is "Script to determine backup finish times".
DECLARE @FinishDate datetime
SELECT @FinishDate = MAX(backup_finish_date)
FROM...
December 4, 2002 at 9:15 am
I also tested the constraint statement, and it worked successfully for me. If the constraint actually existed, your error message would have been "there is already an object named...
December 4, 2002 at 8:06 am
Elno,
The reason you can't drop the constraint and you can enter data that violates the constraint is that the constraint was never created. When you said you were trying...
December 3, 2002 at 3:22 pm
Melissa,
Create a blank Access database (or you may just use an existing database). In the DTS Wizard (DTS Export Wizard), after you select the source, on the destination screen,...
December 3, 2002 at 2:57 pm
Viewing 13 posts - 1 through 13 (of 13 total)