Viewing 15 posts - 25,306 through 25,320 (of 26,490 total)
Just another 2 cents, although SQL Server 2005 Express Edition is free, spending the extra $50.00 for SQL Server 2005 Developers Edition is (in my opinion) well worth while. ...
January 17, 2008 at 12:57 pm
It would help us help you if you provided the DDL for your tables, some sample data, and what your epected output would look like based on the sample data.
Take...
January 17, 2008 at 12:07 pm
I'm still working on the list. Between taking kids to church last night and a production issue on one of our servers, I got side tracked. I will...
January 17, 2008 at 11:56 am
Using SQL, this demonstrates what GSquared was giving you:
create table dbo.MyData (
IntVal int
)
insert into dbo.MyData (IntVal)
select 123
union all
select 4567
union all
select 987654321
select
IntVal,
...
January 17, 2008 at 11:37 am
Much cleaner and avoids loops and unnecessary temporary tables.
January 17, 2008 at 11:25 am
The best way, create a new column as a datetime column. Run a query to insert data into the new column, converting the data from the existing column into...
January 17, 2008 at 10:46 am
I'd actually point you to BOL (Books On-Line). Based on your post, that would be the best place to start.
😎
January 17, 2008 at 9:59 am
The other question I have, is the data being imported a one for one match on columns? If so, and you load the data into a staging table, identifying...
January 17, 2008 at 9:58 am
You may also want to read this article about how to ask for help: http://www.sqlservercentral.com/articles/Best+Practices/61537/
😎
January 17, 2008 at 9:38 am
I also use UltraEdit at times, especially if I am working with large files. I find it easier to format my SQL code, and it has syntax highlighting. ...
January 17, 2008 at 9:35 am
I would use the SQL Server 2005 tools (SSMS, BIDS).
January 16, 2008 at 3:15 pm
Which is also why we keep asking to see the query.
January 16, 2008 at 2:42 pm
I just looked at one of my SSIS packages that has a Script Task, and I am using the & to concatenate strings.
😎
This is the code in my script.
Public Class...
January 16, 2008 at 2:11 pm
Or they could be nightmares! Actually, at this point I'd say it is a good sign.
😎
January 16, 2008 at 1:55 pm
Try the FileSystem task. I use it in several SSIS projects.
January 16, 2008 at 1:39 pm
Viewing 15 posts - 25,306 through 25,320 (of 26,490 total)