Viewing 15 posts - 8,746 through 8,760 (of 9,643 total)
If you have installed SP2 this could be your issue.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 1:12 pm
I thought there was a way to assign a style tag to elements in a report, but I can't find the way to do it now.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 12:01 pm
Running:
Update table
Set char_field = Rtrim(char_field)
Does not actually trim as the char data type is fixed width so the data is right padded with spaces. ...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 10:28 am
You have either not entered the name of the SQL Server correctly or the login does not have rights to the SQL Server.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 10:23 am
I have only seen this error in a script component in a data flow task and it is because I did not click okay when exiting the component, I clicked...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 10:21 am
Okay, now I understand the issue better.
You want to set the error output on your destination to either ignore error or redirect row, the issue is the that, what if...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 10:16 am
I think you need to do it with an SP as I cannot find a way to break after n records.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 10:12 am
The "With" defines that you are creating a CTE (Common Table Expression) and it needs to be the first part of a statement. You need to either put
";...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 10:04 am
I don't think that there is a way to apply different formats to parts of text in a textbox. You need to use multiple textboxes to do this I...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 9:56 am
Your other option is writing a custom aspx page with the parameters and calling the report passing the parameters and making password a hidden parameter.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 9:53 am
RyanRandall (4/25/2008)
Like this?
insert tableAselect col1, col2, col3, ... ,'MHCIRC1208' from tableA where bspid like '%CI11%'
Or is 'MHCIRC1208' derived somehow?
Well you won this time and with a better solution.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 9:49 am
If you want to insert new records and keep the old then this will work:
[font="Courier New"]SELECT
*
INTO
#data
FROM
tableA
WHERE
bspid LIKE '%CI11%'
INSERT INTO tableA
SELECT
[columns],
'MHCIRC1208' AS bspid
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 9:49 am
Yeah me too! Just glad I was first this time.:D
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 9:40 am
How are you merging the data from the sources? It's not clear to me if you have 2 or 3 sources? Is the reject a destination or a...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 9:39 am
I don't have any experience with clusters, but it sounds like to each node has its own plan cached for the query. Try executing it on the slower node...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 25, 2008 at 9:34 am
Viewing 15 posts - 8,746 through 8,760 (of 9,643 total)