Viewing 15 posts - 826 through 840 (of 1,554 total)
Left of Right as the same - they are both OUTER joins.
Left or Right depends on which order you mention your tables.
FROM tableA LEFT JOIN tableB
is the same as
FROM...
October 13, 2005 at 4:48 am
Yes, that would maybe do it? If all you need is the overall sum, you can omit the separate workorder id's..?
/Kenneth
October 13, 2005 at 1:40 am
Example please?
Show current output and desired output.
/Kenneth
October 12, 2005 at 7:30 am
I must confess I've never used bulk insert that much, I still favor bcp for my loads and unloads.
In the simples way, using bcp, the command would look something like:
October 12, 2005 at 7:26 am
Have no idea why Visual Studio does that.
The 'proper' way works though... Go into QA and do something like this:
alter table...
October 12, 2005 at 6:22 am
Well, I can't reproduce this.
Can you post the DDL for the table, and also provide a sample row that gives you the error..?
As far as I can tell, the proc...
October 11, 2005 at 2:51 am
I have no clue about hyperlinks in Access, but... are you positive that the actual value stored in Access is indeed 'j:\Docs\Budget.doc' ..?
I mean, this doens't like like no hyperlink...
October 11, 2005 at 2:30 am
The only reason I can think of is when people wants to write queires as 'SELECT * FROM....' which should be avoided in the first place.
October 10, 2005 at 6:33 am
Well, ok, whatever works for you.
However, by resorting to temptables and cursors, there's actually nothing you can't solve. The question (for us SQL dudes anyway) is more if you really...
October 6, 2005 at 1:22 pm
Ok, I'll just borrow Remi's links for what we need in order to provide any useful help.
Must...
October 6, 2005 at 9:17 am
Almost there I think...
This first came to mind:
select f.fname, b.bdesc, l.ldesc
from #forms f
join #buttons b
on f.fid = b.fid
join #labels l
on f.fid = l.fid
fname bdesc ldesc ...
October 6, 2005 at 9:03 am
The easiest way (without worrying about internal time-storing architecture) to describe when the day ends (say 2005-10-03) is when it's less than the start of the next day...
So, '2005-10-03' starts...
October 6, 2005 at 5:14 am
I don't quite understand the question, but if the main thing is the layout of the results, then it looks like that is the kind of formatting best suited for...
October 6, 2005 at 5:10 am
Examples, please.
We need a tabledefinition and some sample data and the results you'd like.
/Kenneth
October 6, 2005 at 5:08 am
This kind of problems may be easier when SQL Server 2005 arrives. In sqlcmd (the 'replacement' for isql/osql) command utility, you can connect to more than one server within the...
October 6, 2005 at 5:06 am
Viewing 15 posts - 826 through 840 (of 1,554 total)