Viewing 15 posts - 48,601 through 48,615 (of 59,095 total)
Update: I've found that the underlying code in the DLL uses the STRING data type for the things that take string data... in C#, that holds 2 billion bytes...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 26, 2008 at 7:45 am
ps... I've found the following URL and I'm in the process of reading all the links contained in it...
http://support.microsoft.com/kb/312839
Even if you don't have a better place to look, I sure...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 26, 2008 at 7:12 am
So take one of the solutions already given and use it as a derived table in and aggregate query.
--Jeff Moden
Change is inevitable... Change for the better is not.
August 25, 2008 at 11:38 pm
nimmi.smith (8/25/2008)
Jeff: Great post-even though this was 3 years ago. I am hoping you can help me with my bcp issue. My file looks like this
Yep... Sergiy is...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 25, 2008 at 10:54 pm
jfbergeron (8/25/2008)
I have an issue with using openrowSet:
When using on real data, i got several products that with double quotes in the description, and caused me problems.
Here is an example:
ProductID...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 25, 2008 at 10:48 pm
jfbergeron (8/20/2008)
--Jeff Moden
Change is inevitable... Change for the better is not.
August 25, 2008 at 10:33 pm
bitbucket (8/25/2008)
Unanswered is how do you want...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 25, 2008 at 10:23 pm
sql_er (8/25/2008)
I was able to fix the problem without adding an index, but just re-writing the query.
It was strange how a very simple change in the...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 25, 2008 at 10:20 pm
If the clustered key is set by date or, perhaps, identity and the identity column is indicative of entry order, then sectional deletes (or insert to archive, delete from source)...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 25, 2008 at 10:19 pm
Agh! My bad... I didn't read the original post as well as I should have. Throwing in a partitioned row number along with the a method similar to...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 25, 2008 at 10:15 pm
sandeep kumar (8/25/2008)
--Jeff Moden
Change is inevitable... Change for the better is not.
August 25, 2008 at 9:54 pm
Carl Federl (8/25/2008)
This application is running under SQL Server 2000 and the analysis consisted of...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 25, 2008 at 9:49 pm
skenzie (8/25/2008)
--Jeff Moden
Change is inevitable... Change for the better is not.
August 25, 2008 at 9:47 pm
Amit Khanna (8/25/2008)
WITH C_TEMP AS
(
SELECT T.num,T.OP_Bal,T.quantity,T.OP_Bal + T.quantity AS Closing_Bal
FROM #Temps T
WHERE T.num...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 25, 2008 at 9:23 pm
aneeshvarghes (8/24/2008)
I want the count each day seperately
Still doesn't tell me a thing... like I said, tell us exactly what you want by giving us an example of the inputs...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 25, 2008 at 9:21 pm
Viewing 15 posts - 48,601 through 48,615 (of 59,095 total)