Viewing 15 posts - 61 through 75 (of 78 total)
I myself feel the same way. I have been at this for over 15 years now…I have seen the bleeding edge and the not so bleeding edge of technology….I...
March 14, 2005 at 6:45 am
March 14, 2005 at 5:39 am
I can send you an Access Db with all the info you need to connect.
March 8, 2005 at 1:59 pm
Can you provide me with your connect statement?
Marty
March 8, 2005 at 8:49 am
Have you tried Lumigent Technologies - Log Explorer?
February 28, 2005 at 11:46 am
Have you tried like 'GNavn'
February 24, 2005 at 7:34 am
Have you tried the sp_send_cdosysmail?
CREATE PROCEDURE dbo.sp_send_cdosysmail
@From varchar(100) ,
@To varchar(100) ,
@cc varchar(100),
@Subject varchar(100)=" ",
@Body varchar(4000) =" ",
@BodyType varchar(100) =" ", --HTMLBODY or TEXTBODY
@MailServerName varchar(100)
AS
Declare @iMsg int
Declare @hr int
Declare @source varchar(255)
Declare...
February 23, 2005 at 11:50 am
Have you tried using SQL Profiler to capture and analyze your queries or stored procedures?
February 22, 2005 at 12:57 pm
Insert into TabD (site_name,site_id,time_id,min value ) Values (TabA.Site_Name,??,??,??)
February 22, 2005 at 8:52 am
Something like this could be written
Create Trigger tabcheck
on Tab C
For Insert
AS
Select TabA.Site_Name,TabC.Site_Name from TabA,TabC
If TabA.Site_Name=TabC.Site_Name then
Insert into TabD (site_name) Values (TabA.Site_Name)
Print'TabD has been Updated'
February 22, 2005 at 6:54 am
Something like
CREATE TRIGGER trigger_name
AFTER INSERT
ON TABLE
[ FOR EACH ROW ]
DECLARE
-- variable declarations
BEGIN
-- trigger code
EXCEPTION
WHEN ...
-- exception handling
END;
Hope this helps
Marty
February 22, 2005 at 6:10 am
There are multiple ways of accomplishing this. One would be to create a trigger after insert of Tab C which could compare the vaules of Tab A then insert the ID into...
February 22, 2005 at 5:54 am
I found a workaround for my problem and it works great.
In case you needed answers to his questions:
Can your task be scheduled within the SQL Server job system? NO
Do you...
February 18, 2005 at 1:45 pm
Have you tried to shorten the space between your ' ' ?
It may seem weird but sometimes the extra tab sends the flow off.
February 16, 2005 at 8:12 am
Viewing 15 posts - 61 through 75 (of 78 total)