Viewing 15 posts - 8,521 through 8,535 (of 9,643 total)
Are you sure the error is in the expression? Is the expression in textbox42?
Granted my report is simple, but it basically duplicates your situation and the expression works for...
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
May 28, 2008 at 11:44 am
mbender (5/28/2008)
Whats a good way or format to give you the schema in? Also not sure what you mean by SSMS?
Sorry, SSMS is SQL Server Management Studio which replaced...
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
May 28, 2008 at 10:25 am
Okay, I had a minor bug in the CountRows function. You either need to put in the dataset name or leave it like this CountRows().
I have a table and...
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
May 28, 2008 at 10:19 am
I have never tried to do what you are doing, but using any of the dataset fields in the expression will fail when there is no data returned. You...
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
May 28, 2008 at 9:28 am
Post the schema of all your tables involved and the trigger you have in place and exactly what you are modifying. Sounds like you have a unique constraint/index that...
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
May 28, 2008 at 9:26 am
It would be helpful if you posted the code, schema, and some sample data that combine to cause the issue. The only help you could get based on the...
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
May 28, 2008 at 8:57 am
Have you tried using Cast/Convert on the sql statement to force the query to return an INT? I don't know ORACLE but perhaps the Count function returns what in...
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
May 28, 2008 at 8:51 am
It sounds like you are getting an empty dataset returned. SSRS tables have a NoRows property that allows you to specify a message to display in place of the...
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
May 28, 2008 at 8:48 am
toniupstny (5/28/2008)
What Jack said. Looks like I am much slower than him.Toni
I wouldn't say "much". This happens to me all the time.
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
May 28, 2008 at 8:30 am
mbender (5/28/2008)
INSERT INTO TicketMasterHistory
(Ticket,...
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
May 28, 2008 at 7:47 am
Is there a special record combination you are looking for? Do you want 2 rows before and after or 1 row with before and after columns for specific columns?
You...
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
May 27, 2008 at 8:16 pm
Great I am glad I could provide some helpful information
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
May 27, 2008 at 7:56 pm
This solution uses a numbers or tally table, see this article http://www.sqlservercentral.com/articles/TSQL/62867/ to split the items and an update from this article, http://www.sqlservercentral.com/articles/Advanced+Querying/61716/ within a scalar function to get the...
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
May 27, 2008 at 2:04 pm
I believe you could use a foreach loop container in SSIS to grab each Excel file and insert, as long as the "column" names match in each file.
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
May 27, 2008 at 1:15 pm
Using the date datatype does not provide formatting like that. You can use convert(varchar(15),date,113) which I believe is the ddmmyyyy format. Check cast and convert in BOL.
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
May 27, 2008 at 12:23 pm
Viewing 15 posts - 8,521 through 8,535 (of 9,643 total)