Viewing 15 posts - 106 through 120 (of 129 total)
Ok... here is the query:
SELECT
LO.Territory,
IV.AccountNumber,
CH.InvoiceItem, CH.InvoiceNumber,
CH.NetAmount,
CH.IncentiveAmount,
AD.[Name], AD.Company, AD.AddrLine1, AD.AddrLine2,
AD.City + N', ' + AD.State + N' ' + AD.PostalCode AS ConsigneeCityLine
FROM VIEW_CustTable CH --WITH(NOLOCK)
INNER JOIN...
August 20, 2008 at 10:07 am
Thanks for the info.... started looking into DMV(s) and I noted the comment in the BOL regarding the SHOWCONTIG command. Still learning (thrown into DBA position here last year).
I...
August 20, 2008 at 6:53 am
Ellis,
Thanks for the response! Unfortunately, on this server the databases tend to be pretty static during the week. There will be only one of two things happening:
1) Weekly...
March 13, 2008 at 8:59 am
To answer GSquared question, my experience is that derived tables (like the ones I used) or CTEs are not as fast or efficient being more "creative" with the query (as...
January 25, 2008 at 11:41 am
Just in case anyone is interested:
My query using all of the derived tables took 1 hour, 13 minutes to run.
Mark's query using the group/having clause took 14 minutes,...
January 25, 2008 at 10:04 am
Unfortunately, I believe that query will give me all customers in the database. I specifically need to find customers that have invoices in 2003, 2004, 2005, 2006 and 2007.
So,...
January 25, 2008 at 8:15 am
Fabio,
Thanks for your input and your concern.... who knows, maybe later down the line there will be some problem I am not cognizant of now?
The problem was...
January 16, 2008 at 1:09 pm
Ok, in developing the code to convert all of the database tables that contain the FLOAT datatype fields to VARCHAR datatype fields, I discovered a solution to the initial QUERY...
January 15, 2008 at 3:19 pm
Thanks everyone for your inputs!
Grant, I am impressed you were able to find that BOL entry. Either I am still not familiar enough with how to query BOL for...
January 15, 2008 at 7:46 am
Unfortunately, it is not that easy. 🙁
I tried to do LIKE '8810657712' and LIKE '8810657712%' and LIKE '%8810657712%', none of which worked.
I also did a different query on the...
January 14, 2008 at 11:45 am
Tony,
Thanks for the input! I did consider creating a temp table (perhaps @temp or @@temp) to store the 3000+ values, run the bcp queries, then drop the table.
However,...
December 21, 2007 at 8:19 am
Steve,
Thanks for the reply. I figured this would be a bit confusing; the "inner" select statement needs to contain all 3000 items. Basically, the criteria needs to be
bcp...
December 20, 2007 at 3:17 pm
I found a website today that describes variable usage, http://www.sqlis.com/81.aspx .
However, when I have three "columns" of data coming in, index 0, 1, 2, (for the Column1, Column2, Column...
December 13, 2007 at 8:51 am
WOOO HOOOO! It worked! Much better than "brute force"! Just goes to show that collaboration is much better than going it alone!
I can say, if not for this website,...
July 27, 2007 at 7:40 am
Thanks for everyone's responses again! I think there might be a misunderstanding... In the initial query, I am converting any "CompanyNames" from NULL to "Not Assigned".
If the initial CompanyName...
July 26, 2007 at 6:57 am
Viewing 15 posts - 106 through 120 (of 129 total)