Viewing 15 posts - 1 through 15 (of 17 total)
Actually with SQL Server 2005 express the job agents functionality has been disabled.
March 16, 2007 at 7:30 am
My question is how do I backup a database(The process)?
March 11, 2007 at 7:07 pm
Thank you Russel Loski,
That worked perfect!!
thanks,
Dean
January 16, 2007 at 10:47 am
Thank you John,
That worked perfect!!
Dean
January 16, 2007 at 8:37 am
How would you set RECURSIVE_TRIGGERS off?
November 27, 2006 at 1:17 pm
Will this be an issue if I am within a Transaction?
November 27, 2006 at 11:49 am
it can be but looking for this type of solution for other reasons.
Is there a way of having the trigger some how use the Instead of command to handle not...
November 27, 2006 at 10:51 am
This is a field/column in the same table called Modified_Date
November 27, 2006 at 10:28 am
AJ Ahrens
Remi Gregoire
Your last queries worked great!
thanks,
Dean
June 7, 2005 at 11:48 am
The final Solution that works is:
CREATE PROCEDURE MoveFile(@FileName1 varchar(255), @FileName2 varchar(255)) AS
Declare @cmd varchar(2000)
Set @cmd = 'move '+@FileName1+' '+@FileName2
exec master..xp_cmdshell @cmd
GO
May 25, 2005 at 12:37 pm
ok,
CREATE PROCEDURE DeanTest(@FileName1 varchar(255), @FileName2 varchar(255)) AS
Declare @cmd varchar(2000)
Select @cmd = 'move \\netservice2\public\Dean\Junge\DeanTest.txt \\netservice2\public\Dean\Junge\DeanTest.process'
Print @cmd
SELECT @cmd = 'master..xp_cmdshell ' + '''' + @cmd + ''''
Print @cmd
--exec master..xp_cmdshell 'move \\netservice2\public\Dean\Junge\DeanTest.txt...
May 25, 2005 at 12:25 pm
Stored procedure using xp_cmdshell:
CREATE PROCEDURE DeanTest(@FileName1 varchar(255), @FileName2 varchar(255)) AS
Declare @cmd varchar(2000)
Select @cmd = 'move \\netservice2\public\Dean\Junge\DeanTest.txt \\netservice2\public\Dean\Junge\DeanTest.process'
Print @cmd
SELECT @cmd = 'master..xp_cmdshell ' + '''' + @cmd + ''
Print @cmd
Exec @cmd
GO
Here...
May 25, 2005 at 12:11 pm
I am talking about an actual text file
May 25, 2005 at 11:51 am
ok, Now I get a new error, when running the job agent, please note this is a DBF file I am trying to load:
Executed as user: \. DTSRun: Loading......
May 25, 2005 at 8:26 am
Viewing 15 posts - 1 through 15 (of 17 total)