Viewing 15 posts - 166 through 180 (of 221 total)
In the SQL statement Task use a ? in the where clause. Then click on the parameters button to map this to a global variable. Once the Global Variable has...
November 16, 2001 at 3:25 am
Had assumed it would be somewhere logical like a right-click on the fact table, and the OLAP books I've got mention refreshing of data, not new fields so I was...
November 15, 2001 at 9:53 am
Bob,
could you list some of the counters you're using - it may be that the ones you need aren't enabled by default eg Network Segment:Network Utilisation requires the installation of...
November 14, 2001 at 1:38 pm
November 14, 2001 at 10:41 am
Phred,
strange - even with your revised syntax I still get the message "Cannot use text, ntext, or image columns in the 'inserted' and 'deleted' tables.".
So, I'd decide to use...
November 14, 2001 at 5:24 am
My trigger should have been:
set @PhotoState = (select case when inserted.large_photo is null then NULL else '1' end
+ case when inserted.medium_photo2 is null then NULL else '2' end
+ case when...
November 13, 2001 at 1:54 pm
Being from London like Duncan, I've been keeping a close eye on the UK job market. I get the impression that there is little requirement to have a MCDBA,MCSE or...
November 12, 2001 at 3:10 pm
phred,
here's an insert/update trigger for you - (will leave you to create the corresponding delete one!)
CREATE TRIGGER photo_numbers
ON mls_photo
FOR INSERT , UPDATE
as
declare @PhotoState varchar(20)
set @PhotoState = case...
November 12, 2001 at 2:48 pm
If you can't use /A due to sql 7.0 constraints, I'd go back to running the dts package as a job (2). Also, I'd use Andy's idea and write the...
November 12, 2001 at 11:08 am
Could try a couple of things to narrow it down. In the executesql task, or the first task in the package, look at workflowproperties/options/UseActiveX Script. Send out the value of...
November 12, 2001 at 10:43 am
Holly, could you post up the full command line you're sending so I can mimic it on my system. Also, how are you calling DTSRUN: from a cmdexec window on...
November 11, 2001 at 3:32 pm
There are several solutions I can think of:
(1) You can use the sp_OACreate etc stored procedures. There is an article in Peterson's SQL Server 2000 DTS for this. Basically you...
November 11, 2001 at 3:24 pm
phred,
this code below works ok and is a shortened version to do what you want. However, it has dbo as owner of the tables, so I think the problem may...
November 11, 2001 at 2:48 pm
Can you post up your table definitions - I can look at it later if it's still not solved by then.
Paul Ibison
November 9, 2001 at 11:24 am
Phred,
my solution is not so bad as it seems. Ignore the Select - that was for illustration - this code can be used as a computed column. However, admittedly the...
November 9, 2001 at 10:24 am
Viewing 15 posts - 166 through 180 (of 221 total)