Viewing 15 posts - 31 through 45 (of 85 total)
Excellent article. Thanks for sharing.
December 27, 2006 at 8:17 am
Don't forget that when you're working in activex, you have to use double quotes. In your example you're using single quotes.
Also remember that when you're building SQL statements in Activex,...
December 26, 2006 at 4:36 pm
You do not need a global variable in the SQL task AADelete. The entire SQL statement for that task was formed in the Activex task...
December 19, 2006 at 9:34 am
Excellent! Thanks to John and Jeff.
December 15, 2006 at 8:53 am
Thanks, Jeff. There's a lot of stuff in that snippet, some of which I don't know, but in a little while I will. Thanks for pointing us in the right direction.
December 12, 2006 at 11:06 am
Jambu,
Thank you for taking time to share your knowledge with us. We have a copy of Erwin, but have not started using it because we lacked a nice tutorial like...
December 12, 2006 at 8:35 am
Thanks for responding, Jeff. Is there any chance that you have an example? When you get a moment, could you post it?
December 12, 2006 at 8:28 am
SQLtask AA ----> SQLTask BB -----> ActivexTask -----> DynamicProperties Task -----> SQLTask AADelete -----> SQLTask BBInsert
The activex task assumes that the previous two tasks have populated the global variables AACount...
December 8, 2006 at 3:30 pm
Although I do not have the confidence that this is the best solution, this is what I would do: Archiving weekly data by means of a datapump. One SQL task...
December 8, 2006 at 9:14 am
In google do the following and you'll see that a stored procedure is a collection of SQL statements. If someone gave you one or more SQL statements you could write...
November 27, 2006 at 9:03 am
Thanks, bitbucket! It's a simple solution and thanks for telling us about it.
November 27, 2006 at 8:23 am
Thanks for y'alls reply.
Phil, I think SYSTEM_USER is what we were looking for. We'll know for sure when different users execute a stored proc and we log whodunnit with SYSTEM_USER.
Ninja,...
November 22, 2006 at 11:34 am
Elegant solution. I modified it after creating the table separately:
CREATE procedure usp_testUserID
as
INSERT INTO dbo.ProcActivity (ProcName) SELECT OBJECT_NAME(@@PROCID) AS ProcName
GO
Is there any way to get the network userid? When I run...
November 21, 2006 at 2:41 pm
Thank you for your suggestions, Jonathan. In the long run, standards and conventions are not for the brilliant innovator, but for the stalwart person who can keep an enterprise going....
November 21, 2006 at 8:35 am
Thank you for taking the time to share with us, Jambu. Maybe you were not able to help the geniuses, but it was very helpful to the rest of us.
November 21, 2006 at 8:25 am
Viewing 15 posts - 31 through 45 (of 85 total)