Viewing 15 posts - 61 through 75 (of 432 total)
I think Luke's definitely got a point there. If you leave the two fields separate then you can create a UDF to display as necessary (#, #). That leaves the...
September 18, 2008 at 7:08 am
Hi Rick,
You can set the max errors value (on the options tab of the transform data task) to 9999, allowing that many errors before it falls over.
To capture the failed...
September 18, 2008 at 7:01 am
If you take a look at the results of these statements:
SELECT SUBSTRING(0x100400, 1, 1) & 16
SELECT SUBSTRING(0x100400, 2, 1) & 4
They return 16 and 4 respectively.
You can think of the...
September 18, 2008 at 2:35 am
I would recommend reading the article on this but here's a quick overview. The SUBSTRING of COLUMNS_UPDATE() function operates as follows:
SUBSTRING(
COLUMNS_UPDATED(), -- Bitmask values
...
September 17, 2008 at 8:25 am
Have a look at your DTSStep_DTSActiveScriptTask_2 step, line 184
DTSStep_DTSActiveScriptTask_2, Error = -2147220482 (800403FE) Error string: Error Code: 0 Error Source= Crystal...
September 17, 2008 at 3:52 am
Glad I could help. My email is on my profile if you need to bounce any more ideas, either that or posting on here always gets a result from someone...
September 16, 2008 at 2:43 pm
Well it depends on what you want out of it I suppose. If you're already with a leading supplier then I would have thought that you've got some job security...
September 16, 2008 at 2:04 pm
[edit]Luke, you got in first! That'll teach me not to refresh the page before replying!!![edit]
I think you might be able to use the SQL Command in the source drop down...
September 16, 2008 at 2:00 pm
I saw this article today, it looks as though the B group is looking to buy some of the Lehman Brothers' assets. This may be an indicator in to how...
September 16, 2008 at 1:52 pm
I always start my object creation scripts with the rather long-winded but clearly explainable:
IF EXISTS (SELECT * FROM sysobjects WHERE name = 'myTableName' AND xtype = 'U')
...
September 16, 2008 at 1:50 pm
This will give you client sub-totals without the need for a temporary table.
SELECT
CASE WHEN client IS NOT NULL AND hourSegment IS NULL THEN 'Client Total'...
September 16, 2008 at 1:43 pm
If you want the distinct number of orderIDs (if there is more than one row per orderID) I would use:
SELECT cc, COUNT(DISTINCT orderID)
FROM table
GROUP BY cc
September 16, 2008 at 1:01 pm
The same way I'm learning it. In at the deep end, who needs armbands?!? :crazy:
I think you should be able to concatenate your fields together in your Click method like...
September 16, 2008 at 12:47 pm
Hi Phil,
How is the summary displayed? Is it in one big textbox or another control?
You may, if the summary is on a different form rather than CSS layer, need to...
September 16, 2008 at 8:46 am
I don't think that you can copy directly from the Notepad in to a Forum post, but I suppose you could have the Control Panel with the notepad in another...
September 16, 2008 at 7:47 am
Viewing 15 posts - 61 through 75 (of 432 total)