Viewing 4 posts - 1 through 4 (of 4 total)
Jon,
DBGhost it the answer to your porblem.
With DBGhost you will not only know what changed but it will build an update script for sync'n deployment to testing.
We've used several comparsion...
June 27, 2005 at 6:44 am
The temp table #TmpA is out of scope for the sproc sp2.
You can either create the temp table in sp1 as ##TmpA making it global, or call sp2 from within...
April 29, 2004 at 6:52 am
If you need a parameterized view, use a udf that retuns a table. Its much easier to develop, test, and deploy then nested procedures using the INSERT INTO statements.
Christopher DeMeyer
December 10, 2003 at 5:30 am
In our company, I have made it a rule to always include a comment line like (--ForEncryption--) in the proper place within each SP, UDF, or VIEW created. Then on...
December 10, 2003 at 5:19 am
Viewing 4 posts - 1 through 4 (of 4 total)