Viewing 15 posts - 56,221 through 56,235 (of 59,070 total)
Yep... Developer's Edition of SQL Server 2000 sp4. But, like you said, the evironment you run it in makes all the difference in the world for output speed. OSQL via...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 5, 2007 at 6:50 pm
You're welcome...
I've verified that it's available in both SQL Server 2000 and 2005. Dunno if it will be available in 2008.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 5, 2007 at 6:13 am
You can get a lot more than just the date...
EXEC Master.dbo.xp_GetFileDetails 'C:\AH.aspx'
--Jeff Moden
Change is inevitable... Change for the better is not.
June 4, 2007 at 5:31 pm
Just another way...
SELECT REPLACE(STR(somecol,6),' ','0')
--Jeff Moden
Change is inevitable... Change for the better is not.
June 4, 2007 at 5:19 pm
You know what they say... "Tuning makes perfect"
Keeps getting better and better...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 4, 2007 at 6:12 am
Nicely done, Ian... didn't know the OP was doing the kind of stuff he said in a later post.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 4, 2007 at 6:05 am
Heh... could be... the correct answer is "don't sort in a view".
--Jeff Moden
Change is inevitable... Change for the better is not.
June 4, 2007 at 6:03 am
Thanks Jesemine...
Heh... yeah... the only reason I don't upgrade the client tools right away is because we still use 2k at work and I need to be able to answer...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 3, 2007 at 9:57 am
Scheduled Backups become "Jobs"... Find the [Management] folder for the database and expand it... find the [SQL Server Agent] folder under that and expand it... find the [Jobs] folder under...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 3, 2007 at 9:53 am
--===== Order by with NULL last... -- Sort/Select all non-null... will be first in list SELECT * FROM YourTable WHERE YourColumn IS NOT NULL ORDER BY YourColumn UNION ALL ----------------------- --...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 3, 2007 at 8:57 am
Understood... I don't think there's a trick to do this or monitor this in 2k... if they can view the data, they can copy the data.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2007 at 3:53 pm
Heh... I've really got to get 2k5... Just for grins, Jezemine, can you post the code as in your example for us 2k guys??? Would be interesting for me to...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2007 at 3:50 pm
Removing the "owner" privs is the only way... unless you encrypt everything.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2007 at 1:57 pm
Not to worry... no internal cursor...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 1, 2007 at 9:53 pm
Ok, Chris... but the OP did post some SQL Server 2k5 code.
{Edit}... sorry misread that... YOU have SQL Server 2k... I get it... ![]()
--Jeff Moden
Change is inevitable... Change for the better is not.
June 1, 2007 at 9:49 pm
Viewing 15 posts - 56,221 through 56,235 (of 59,070 total)