Viewing 15 posts - 136 through 150 (of 186 total)
Thank you all for the time you guys have given to help me out! Much appreciated.
December 14, 2011 at 2:13 pm
The users also need to see what data was there in the file and what was matched through a web application and then reports are run off of that data...
December 14, 2011 at 11:50 am
Elliott Whitlow (12/13/2011)
Elliott Whitlow (12/13/2011)
I would like to understand the process more, because...
December 13, 2011 at 2:00 pm
Elliott Whitlow (12/13/2011)
I would like to understand the process more, because it seems...
December 13, 2011 at 1:29 pm
Elliott Whitlow (12/13/2011)
I would like to understand the process more, because it seems...
December 13, 2011 at 1:28 pm
Elliott Whitlow (12/13/2011)
Hm, maybe.. He could multi-cast it but I'd like to understand the process before I really offer a solution.CEWIII
--and this is a "SHE" 😉
December 13, 2011 at 1:15 pm
Elliott Whitlow (12/13/2011)
However, may I ask a dumb question. ...
December 13, 2011 at 1:13 pm
This gives you last day of the current month
SELECT convert(varchar,DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+1,0)),101)
December 2, 2011 at 11:20 am
I tried something like this but now reaching a road block
Declare @stopTime as varchar(7),@SystemNowTime as varchar(7),@EOMdate varchar(10)
SET @EOMdate = convert(varchar,DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+1,0)),101)
SET @stopTime = '11:30PM'
SET @SystemNowTime = RIGHT('0' +...
December 2, 2011 at 9:43 am
GSquared (12/2/2011)
Guras (12/2/2011)
GSquared (12/2/2011)
Guras (12/1/2011)
GSquared (12/1/2011)
December 2, 2011 at 8:46 am
GSquared (12/2/2011)
Guras (12/1/2011)
GSquared (12/1/2011)
December 2, 2011 at 8:29 am
GSquared (12/1/2011)
December 1, 2011 at 11:46 am
I did something like this
Declare @errMsg varchar(1000)
If @enableFlag = 0 --disable jobs
BEGIN
BEGIN TRY
exec msdb..sp_update_job @job_name = 'Update_job1', @enabled = 0
END TRY
BEGIN CATCH
...
December 1, 2011 at 9:35 am
I took the route of what HowardW sugested since I realized there were some notifications jobs that needed to be running.
Here is my sp
CREATE PROCEDURE [dbo].[PROC_SQLJOBS_ENABLE_DISABLE] (@enableFlag...
December 1, 2011 at 9:09 am
no, the application is a vb.net Winform apps
November 18, 2011 at 2:59 pm
Viewing 15 posts - 136 through 150 (of 186 total)