Viewing 15 posts - 3,226 through 3,240 (of 6,486 total)
You mean - something like this?
update emp
set empname='Bob Smoot',
EmpTitle='Emperor',
Emprole='Master Bottle Washer inspector'
where
...
May 21, 2008 at 1:51 pm
Or - you could skip SSIS, and use a customized tool to do just what you're after: the SQL Server Migration Assistant for Access. It should transfer quite a...
May 21, 2008 at 1:45 pm
Grant Fritchey (5/21/2008)
Yeah. I'm actually working on comparing MAX, TOP and ROW_NUMBER. I was hoping to outline which might be better when.
If you want to see some REALLY interesting things...
May 21, 2008 at 1:38 pm
Grant Fritchey (5/21/2008)
May 21, 2008 at 12:58 pm
hmm... never mind earlier comment. I think this one's a little better anyway.
SELECT d.[DocumentName],
d.[DocumentId],
...
May 21, 2008 at 10:20 am
Hmm...Trying to work this one out.
The first one (in the CROSS APPLY), returns the Highest version of a given document in the VERSION TABLE.
The second one seems to be taking...
May 21, 2008 at 10:12 am
Keep in mind that your choice of clustered index will have a LOT of bearing on how quickly a table will fragment.
Remember that the clustered index dictates the...
May 21, 2008 at 9:52 am
The use of functions against column values in the WHERE clause tends to force the optimizer to have to use index SCANS instead of SEEKS, since the function has to...
May 21, 2008 at 9:44 am
GSquared (5/21/2008)
The reason for this is that, in a Left Outer Join, any criteria on the left table need to be in the Join clause, or they make it into...
May 21, 2008 at 9:28 am
#2 is a bad idea all around.
Shrinking a file that's going to grow again only encourage fragmentation. If you just leave it alone - it will grow to the...
May 21, 2008 at 9:15 am
There's NO scenario in SQL server with NO logging. As a matter of course (and as part of the definition of an RDBMS), activity is logged in a way...
May 21, 2008 at 8:29 am
crever (5/21/2008)
I've recently upgraded to vista too, and the only issue...
May 21, 2008 at 7:49 am
I've actually started to notice this. I'm in the market right now, but having been a "jack of all trades" forever, I'm apparently a bit of a challenge for...
May 21, 2008 at 7:43 am
Jeff Moden (5/20/2008)
Setup profiler to page, call, email, and throw rocks at the hardware team everytime a query takes longer than a certain time to execute... you sleep. 😛
OH you've...
May 20, 2008 at 8:34 pm
If you're talking about accessing data from the base table not used in the insert...unfortunately - you have to relink to it somehow.
May 20, 2008 at 4:48 pm
Viewing 15 posts - 3,226 through 3,240 (of 6,486 total)