Viewing 15 posts - 8,521 through 8,535 (of 9,641 total)
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...
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...
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...
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...
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...
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...
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.
May 28, 2008 at 8:30 am
mbender (5/28/2008)
INSERT INTO TicketMasterHistory
(Ticket,...
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...
May 27, 2008 at 8:16 pm
Great I am glad I could provide some helpful information
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...
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.
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.
May 27, 2008 at 12:23 pm
I don't know of a way to this directly from SQL Server or SSRS unless you have some kind of add-in to your mail server that would allow you to...
May 27, 2008 at 12:18 pm
Here are some links from the thread I mentioned earlier:
http://support.microsoft.com/kb/918483
I saw another one on another thread on SSC, but I can't remember where.
May 23, 2008 at 1:10 pm
Viewing 15 posts - 8,521 through 8,535 (of 9,641 total)