Viewing 15 posts - 57,286 through 57,300 (of 59,067 total)
Since none of the methods are likely to use an available index when used in a WHERE clause, try this one...
--=============================================================
-- This section of code is just setup...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 1, 2006 at 6:53 pm
Why not just email the HTML that sp_MakeWebTask creates? When they double click on it as an attachment, it'll come up just fine.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 31, 2006 at 10:15 pm
Sure, sure.... but we both know that they don't always comply... yep, it's crap but sometimes (like in the telephone reseller business) they send you crap just to make your...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 31, 2006 at 10:12 pm
Hasn't yet, Serqiy... ![]()
--Jeff Moden
Change is inevitable... Change for the better is not.
October 31, 2006 at 10:08 pm
Heh... Pele, huh?
Anyway, I agree... if you are in control of the source of the data, then "store all parts of names in databases separately". However, the story changes a...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 31, 2006 at 8:59 pm
They don't have a switch for it so....
bcp "SELECT 'Pub_ID','Pub_Name','City','State','Country' UNION ALL SELECT * FROM Pubs..Publishers" queryout publ_out /c /t , /r \n /Sservername /Uloginname /Ppassword
You could do...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 31, 2006 at 8:43 pm
The free trial version would certainly work but... why don't you spend the $64 for the Developer's version so you don't have to worry? And, why doesn't Borland Interbase support...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 30, 2006 at 10:18 pm
Then, don't add columns to an existing table... make a new table that has all of the necessary columns (I'm thinking temp table here) and copy the data from the...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 30, 2006 at 5:12 pm
>>After you finish with it start with his original name: "Jean-Claude Camille François Van Varenberg"
Leave it to Serqiy to know something like that ![]()
--Jeff Moden
Change is inevitable... Change for the better is not.
October 30, 2006 at 4:41 pm
Temp tables do NOT always write to disk if they are small... do see Q4of the following URL which I've now posted 3 times in this thread...
http://support.microsoft.com/default.aspx?scid=kb;en-us;305977&Product=sql2k
... which...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 30, 2006 at 4:31 pm
Oh, no, no, no.... don't use BETWEEN... it's a form of "Death by SQL". First, 23:59:59.999 will be rounded up to the next day and you will get all of the...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 30, 2006 at 6:48 am
Praveen,
I've been asked many times to improve the performance of "a server"... ![]()
Yeah, overall server tuning and correctly adding appropriate indexes and deleting unused...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 30, 2006 at 6:37 am
BULK INSERT can also use a format file for complex imports. For simple imports that all use the same column delimiter, you don't even need that... Bulk Insert is a...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 30, 2006 at 5:57 am
You could also do it using the other way found on the same web site you posted...
http://www.motobit.com/tips/detpg_read-write-sql-image-file/
It's still a bad idea to save images in a table, though...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2006 at 9:25 pm
First of all, the normal soap box diatribe about all the problems associated with saving images in a table would apply here. It was a bad idea.
On to the problem......
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2006 at 9:21 pm
Viewing 15 posts - 57,286 through 57,300 (of 59,067 total)