Viewing 11 posts - 196 through 206 (of 206 total)
Thanks for the validation mom. It's amazing what you can do with @@servername, sysservers and a parameterized table in order to run sp's on remote servers.
September 3, 2004 at 2:45 pm
Have you considered making the "few lines of T-SQL" into stored procedure and then executing that?
DECLARE @commandtext varchar(2000)
SET @commandtext = 'myStpreProc'
exec sp_add_jobstep @command = @commandtext
September 3, 2004 at 6:58 am
Thanks, the DTS solution worked like a charm.
August 31, 2004 at 7:33 am
Can you provide a little more detail? For instance, what is your code to establish the connection?
dab the dba
August 17, 2004 at 7:31 am
Once you've created your package, you will need two connections, one for your SQL server and one for Dbase iii/iv. In the 'Connection' pane click the icons to create the...
July 27, 2004 at 6:45 am
I discovered over a year ago that either with the Export Wizard in EM or with a DTS package, you can export SQL data to Visual Fox Pro with the...
July 26, 2004 at 10:44 am
I had a similar situation and had to go the parameter table route and it was not that difficult. For each model number you will have a "last model id"...
July 16, 2004 at 7:39 am
By "Alphabatize the fields" do they mean return a resultset with the fields in order or they just want a sorted list of fields in a table?
For the first scenario, just...
July 16, 2004 at 7:21 am
I've found xp_sendmail and the SQL Mail agent at best inconcistent and not very reliable. Instead I've used vbscript and CDONTS or java and the javaMail API. Either one is...
July 9, 2004 at 2:19 pm
Seeing as I get this question almost daily I turn the question back on the developer usually such as: Define not getting the expected results? Are you expecting a small...
July 9, 2004 at 1:34 pm
Viewing 11 posts - 196 through 206 (of 206 total)