Viewing 15 posts - 51,901 through 51,915 (of 59,067 total)
Heh.... Just like SQL allows itself to take any form... or Java... or...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 9:53 pm
Yes... there are... just setting recovery model to SIMPLE doesn't stop logging for loading of data. You have to use BCP or BULK INSERT or SELECT/INTO and your target...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 9:43 pm
Agreed... guess I need to wipe some of the egg off my face. DOB columns would be an appropriate place to use DATE only (although I don't know if...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 9:35 pm
Lynn Pettis (3/10/2008)
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 9:23 pm
Giving away a fine "secret" here, but no one's ever heard of temporary stored procedures? Build it using dynamic SQL... execute it... it's all in the same scope that...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 8:42 pm
Jack Corbett (3/10/2008)
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 8:35 pm
Would be a heck of a lot faster if you used a holiday table or, better yet, a calendar table.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 8:12 pm
Bob Fazio (3/7/2008)
;WITH table1(col1) AS (
SELECT objects.[object_id] FROM sys.objects
)
SELECT DISTINCT TOP(2000) Table1.col1,Table2.col1,Table3.col1
FROM table1,table1 TABLE2,table1 table3
ORDER BY table3.col1
-- option(force order)
The above comes back...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 8:09 pm
It's also unfortunately due to the fact that it's substantially easier to get "certified" as a Microsoft DBA than it is in Oracle. You therefore have a lot larger...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 7:39 pm
I had a dog like Matt's... the only way to get her to take meds was with a small enough piece of steak for her to swallow in one gulp......
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 7:14 pm
Thanks for the feedback, Marvin. Yeah, and if you throw in a check by IsDate, you can control the error instead of throwing it against the wall to see...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 7:03 pm
Thanks Timothy... That's why I normally don't use VBS scripts... I can do almost everything with T-SQL. 🙂
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 6:59 pm
There's just nothing like someone providing instant confirmation for us folks just finally getting into 2k5... 🙂 Thanks, Matt.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 6:56 pm
rbarryyoung (3/10/2008)
Lynn Pettis (3/10/2008)
Cursors may be evil, but they may be a necessary evil...
In my experience they are necessary and acceptable for only one thing: variable-izing SQL objects in the...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 6:44 pm
kent waldrop (3/10/2008)
What are the circumstances for that? When I run the following query it get the commented results:
use tempdb
go
select name as before from sysobjects where type = 'U'
exec...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2008 at 5:15 pm
Viewing 15 posts - 51,901 through 51,915 (of 59,067 total)