Viewing 15 posts - 301 through 315 (of 411 total)
Hey,
You may want to post this in the SQL2005>Development forum, as I am not sure that this is a SSIS related question.
From my limited (and I mean extremely limited) knowledge...
June 3, 2008 at 2:48 am
What happens when you use numeric and date types?
June 3, 2008 at 2:45 am
hey,
Apologies for the short reply yesterday (my bad, had a deadline and one very irate client to deal with...)
Here is a posting which looks similar to the problems you are...
June 3, 2008 at 2:44 am
try sp_helptext, this will give you the procedure as it is on the database
June 3, 2008 at 12:28 am
A little bit off the cuff, but BIDS may be able to assist you with this one.
Create a for each file enumerator, and increment a count variable with 1 each...
June 3, 2008 at 12:22 am
I havent executed batch files in SQL 2005 using the SQL server agent from the job scheduler yet, but surely it should wait for the completion of the step before...
June 3, 2008 at 12:15 am
As long as you keey on posting on this forum, these pros will sure go a long way towards making it easier than before...
June 3, 2008 at 12:11 am
Even if the data is large, a subquery might do the trick for you
Select view1.date, view1.column1, view2.column2, view3.column3
from
(select date, column1 from table1) as view1
left join
...
June 3, 2008 at 12:08 am
Uli,
Look at this article:
http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx
This will tell you what you get with your edition of SQL.
From what I can see at a glance, you get the basic transforms, but not the...
June 3, 2008 at 12:02 am
Hey,
I dont quite understand what the problem is?
You want to populate the destination table with a bunch of sources. Merge join would suffice. Lookups will suffice as well.
Depends on...
June 2, 2008 at 11:55 pm
No idea, but my first stop would be to try and re-install BIDS
Good luck
~PD
June 2, 2008 at 11:46 pm
Hey,
Uhmmm, dont you mean Windows Server 2003 x64 with SQL Server 2005.
What version of SQL server do you have installed, and have you installed the latest service packs?
~PD
June 2, 2008 at 11:05 am
Hey,
Yes you can, but it will return slightly more than what you are bargaining on
select
W.WOMAN, G.GUY
from Guys as G
inner join Women as W
on G.Desired = W.Desired
This will return any matches...
June 2, 2008 at 11:01 am
Hey,
happy to assist...
As indicated before, this forum is more for the database development in SQL (you will find some pretty hardcode Transact SQL here with some really...
June 2, 2008 at 10:50 am
Viewing 15 posts - 301 through 315 (of 411 total)