Viewing 15 posts - 1 through 15 (of 16 total)
Hi Theo
This looks very interesting, however I am hitting a conversion error in the dynamic SQL...
SELECT h.step_name as JobName
,j.name as CatName
,CONVERT(DATETIME,...
February 13, 2018 at 3:43 am
Many thanks for the information. I will take the advice on board 🙂
May 29, 2012 at 4:23 am
Hi Eugene
Only one record at a time does get updated via user data entry. Are you referring to the original trigger I inherited or to the modification I made to...
May 29, 2012 at 3:29 am
I decided to see if some of the seemingly over-complicated form events in place were preventing the trigger in some way and before I got very far, I found that...
May 29, 2012 at 2:45 am
Hi. The data is definately being entered via the form. In fact it was a long time before I realised the trigger was working via other means because I was...
May 28, 2012 at 1:02 pm
Hi. Entire trigger is as follows...
USE [FastPLANNINGDev40]
GO
/****** Object: Trigger [dbo].[ispitblContactsIUTrig] Script Date: 05/28/2012 10:37:29 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER TRIGGER [dbo].[ispitblContactsIUTrig] ON [dbo].[itblContacts]
FOR INSERT,...
May 28, 2012 at 10:28 am
Jeff Moden (12/13/2009)
Paul-755326 (12/13/2009)
RBarryYoung (12/13/2009)
December 14, 2009 at 2:22 am
RBarryYoung (12/13/2009)
December 13, 2009 at 6:42 am
Jeff Moden (12/12/2009)
Paul-755326 (12/12/2009)
DECLARE @STR varchar(8000)
SELECT...
December 13, 2009 at 2:25 am
thank you for the information - very interesting. I solved my problem by using the following TSQL as source data in my DTS...
DECLARE @STR varchar(8000)
SELECT @STR=kPEAccountCode...
December 12, 2009 at 8:00 am
I managed to overcome the problem
It seems to me that the users affected were switched from English to British English after they had SQL Client installed and this change does...
December 7, 2009 at 12:15 pm
it was just the last semicolon and of course the text/varchar change
many many thanks
May 19, 2009 at 9:19 am
Hi Gsquared
many thanks for this, but I get incorrect syntax near ';'
also - where do I find help for UDFs?
May 19, 2009 at 8:23 am
Create an alias in the client machine to point to the server in right port and then try again.
Regards..Vidhya Sagar
already tried. No difference.
June 30, 2008 at 2:16 am
In your DTS package, you will have at least one connection to a database. I have seen a lot of people using local/localhost and a SQL account (generally, I...
June 30, 2008 at 2:15 am
Viewing 15 posts - 1 through 15 (of 16 total)