Viewing 15 posts - 1,291 through 1,305 (of 2,612 total)
You could always do a LEFT JOIN and just specify a filter based on your @innerjoin parameter
[font="Courier New"]select *
from tableA ta
left join tableB tb on tb.idA=ta.idA
left join tableC tc on...
June 16, 2008 at 11:35 am
These types of references are the typical example of why you need deferred updates as they have in Oracle.
In my opinion, 99% these types of "Chicken or Egg" references are...
June 16, 2008 at 11:28 am
You could also set one of the records to point to another record or NULL if it is allowed.
Typically, in these circular reference scenarios, one of the records would be...
June 16, 2008 at 11:27 am
Check the MDAC version on the older machines, but that seems logical. You probably just have to install a newer version of MDAC on the older workstations.
June 16, 2008 at 11:23 am
Your two-instance testing plan is not going to work unless you are able to stop the alternate instance during your tests. The two instances are going to compete for...
June 16, 2008 at 11:12 am
You should not use CmdExec - why did you?
What options have you specified?
Are you 100% sure you have used the 64bit DTEXEC?
June 16, 2008 at 7:32 am
Your database field is NVARCHAR(MAX) - this is UNICODE.
Your derived column is [DT_TEXT] - this is not UNICODE.
Either make the derived column [DT_NTEXT] or make the database field VARCHAR(MAX).
June 16, 2008 at 7:03 am
There must be a more efficient way of doing this, but APPLY would handle it pretty easily.
Jeff may have a way of doing this without hidden RBAR.
[font="Courier New"]DROP TABLE #Sample
GO
CREATE...
June 16, 2008 at 6:55 am
Views are just stored queries, so they do not impact performance on their own.
They tend to produce bad queries because they get re-used in the wrong situation. For example,...
June 16, 2008 at 6:22 am
MOM is big and complicated. It works very well, but for this it is overkill.
Just go into the "Alerts" section in your SQL Server Agent node in Management Studio...
June 16, 2008 at 6:03 am
If you must use word, you would need to write some VBA code in the word document to react to the save event of the document. Assuming your users...
June 16, 2008 at 5:59 am
Make sure you look closely at the support offered for VMWare and SQL Server. It is only partially supported and with particulare versions of VMWare.
I have had good and...
June 16, 2008 at 5:56 am
I don't see a question.
Use option #2.
June 16, 2008 at 5:52 am
I would recommend using logging if possible.
Barring that, one option is to use multiple execute SQL tasks and put them at whatever point in your package you want to insert...
June 16, 2008 at 5:08 am
Sorry, I didn't want to code inserts with all of the additional columns.
The important parts are where I put comments - order the insert by the original identity column and...
June 13, 2008 at 1:15 pm
Viewing 15 posts - 1,291 through 1,305 (of 2,612 total)