Viewing 15 posts - 11,116 through 11,130 (of 13,877 total)
You need the same field in both places to enable you to do a lookup, simple as that.
October 4, 2011 at 2:36 am
Unless you are able to find an algorithm which can derive short name from long name, there is no easy way.
One way to solve this permanently would be to add...
October 4, 2011 at 2:16 am
Scott Murray-240410 (9/30/2011)
September 30, 2011 at 7:23 am
This should work:
DELETE from dbo.ImportStage1
where
Column_8 <> Floor(Column_8)
September 30, 2011 at 5:54 am
...in my older version i was missing a bracket which i have now included.
Oops! 😛
September 30, 2011 at 5:28 am
Are you saying that the columns themselves are the same, but just that the column names are different?
Or that you want to dynamically select which columns are exported and that...
September 28, 2011 at 9:29 am
Your sample data is a bit confusing.
Looks like you have a field in the format
<span [text] MM/DD/YYYY</span>
is that correct?
If it is, would it be fair to say that extracting the...
September 28, 2011 at 4:07 am
Shriram R C (9/28/2011)
Hi all,i have three databases in my server.i wanna synchronize all the three db's. is it possible to achieve through ssis?
SSIS is not a mirroring tool per...
September 28, 2011 at 3:25 am
Use SSIS and Excel 2007+.
Now please answer the 'TOP' question. I'll spell it out.
Assume you have 10 companies
Company1, Company2, ..., Company10
The first time you run
SELECT TOP 3 Company from Company
you...
September 26, 2011 at 7:16 am
engrshafiq4 (9/26/2011)
i have more than 100000 records in company table...i want to export in excel and then do some correction and then import again.....i have a...
September 26, 2011 at 6:57 am
Not enough detail here.
Please follow the link in my signature for details on how to post questions such as this.
September 25, 2011 at 4:28 am
I think you can code round this using IsNull():
avg(DATEDIFF(DAY, o.ocDateOpened, IsNull(o.ocDateClosed,GETDATE())))
September 23, 2011 at 7:58 am
You'll be able to do it with an asynchronous Script Component - will take a bit of coding but if you're familiar with VB or C# it's nothing too onerous.
September 22, 2011 at 10:54 am
Viewing 15 posts - 11,116 through 11,130 (of 13,877 total)