Viewing 15 posts - 1,801 through 1,815 (of 2,612 total)
Of course, now that I am looking at your sample data a bit, it looks like your time column is probably a VARCHAR in which you could have 8:00am and...
April 21, 2008 at 12:56 pm
SELECT Employee, Entrydate, MIN(Entrytime) AS Entrytime
FROM Entries
GROUP BY Employee, Entrydate
April 21, 2008 at 12:53 pm
Use a Conditional Split transformation component in your data flow.
April 21, 2008 at 10:51 am
I think you are using a SQL Destination in your data flow and the destination SQL server is not the local SQL server that is executing the SSIS package.
The SQL...
April 21, 2008 at 9:58 am
I had to do this and ran into two issues.
The first is that the SSIS components will not update an AS 2000 cube. You will have to use a...
April 21, 2008 at 9:54 am
You may also want to take a good look at what you are actually doing. A job that runs every minute is probably not the most efficient process.
What are...
April 21, 2008 at 7:19 am
You may want to give a better description of what you are trying to do. This is not necessarily what SSIS is made to do.
It can, however, do this...
April 21, 2008 at 7:13 am
When you schedule a SQL Agent job for an SSIS package, the job step UI allows you to select any SSIS server for choosing the package.
However, the package will be...
April 21, 2008 at 7:05 am
I blame it entirely on the initial post.
April 18, 2008 at 12:41 pm
1) If the databases are not being constantly added and removed (so you don't need the process to be dynamic for new databases) you could create an SSIS package with...
April 18, 2008 at 12:28 pm
Because we are all idiots and had the line feed before the carraige return.
Try this:
select @t = replace(@t, char(13) + char(10) + char(13) + char(10), char(13) + char(10))
April 18, 2008 at 12:06 pm
Replace 2 carraige returns next to each other with one:
set @t = replace(@t, char(10) + char(13) + char(10) + char(13),char(10) + char(13))
April 18, 2008 at 11:29 am
If you are trying to get all of the rows from table A for each row in table B, use a merge join.
April 18, 2008 at 10:00 am
It's also important to note that the "Search" feature on Report Manager searches the names and descriptions of the reports.
Descriptions are pretty useful.
April 18, 2008 at 9:58 am
Viewing 15 posts - 1,801 through 1,815 (of 2,612 total)