Viewing 15 posts - 3,796 through 3,810 (of 6,486 total)
Jeff Moden (4/4/2008)
I see that the not so uncommon thing has occurred... Matt beat me to it 😀
Jeff - If you can talk Steve into it - you can have...
April 4, 2008 at 7:11 am
J -
Click on his name on the left - you should get an option to "send an e-mail" to him.
April 4, 2008 at 7:04 am
ALZDBA (4/3/2008)
Matt Miller (4/3/2008)
...By the way - the relevant reply seems to be on page 17....
(that was a dirty trick there, Johan!)
...
Dynamic paging ... :Whistling:
In my SSC-forum-profile I've set...
April 4, 2008 at 6:44 am
I'd have to say you have a "bad" query somewhere. Something like an accidental cross join between several large tables. In order to match up the rows, it...
April 3, 2008 at 3:27 pm
antonio.collins (4/3/2008)
ideally, the FROM clause should describe how the tables JOIN together (dept join emp on dept.deptId = emp.deptId) and the WHERE clause should have criteria...
April 3, 2008 at 3:21 pm
GSquared (4/3/2008)
April 3, 2008 at 1:58 pm
Lynn Pettis (4/3/2008)
select * from MyTable
if you insisted on...
April 3, 2008 at 1:40 pm
There's really no reason you can't do it directly in the ON statement:
select b.emp_nbr, begin_rng, end_rng
from range a
join emp b
...
April 3, 2008 at 1:09 pm
suhas.wadadekar (4/3/2008)
well there could be 10 rows with ID = 1 and another 10 rows with ID != 1
Remember that LOGICAL AND is the "opposite" concept of what "conversational language...
April 3, 2008 at 12:54 pm
Roy Ernest (4/3/2008)
Writing to a file. Thats all.
How as in what command is being used to output to the file? BCP? OPENROWSET?
April 3, 2008 at 12:31 pm
davidsalazar01 (4/3/2008)
April 3, 2008 at 12:25 pm
Michael Covington (4/3/2008)
01value1value2value3valueINEEDvalue4value5
02newval1newval2newval3
03anotherval1
04differentval1differentval2differentval3differentval4differentval5differentval6
I can read the source file...
April 3, 2008 at 12:00 pm
GSquared (4/3/2008)
I've seen actual portability on real production databases with very complex code.
To achieve it, you unhook the server from its rack, load it up on a dolly, trundle it...
April 3, 2008 at 11:54 am
Grant Fritchey (4/3/2008)
April 3, 2008 at 11:42 am
Jason Selburg (4/3/2008)
Ihave no experience using it, but wouldn't WITH ENCRYPTION be helpfull?
It doesn't protect DDL of physical objects. Meaning, as far as I've seen so far - it...
April 3, 2008 at 11:36 am
Viewing 15 posts - 3,796 through 3,810 (of 6,486 total)