Viewing 11 posts - 1 through 11 (of 11 total)
this is going to be a scheduled job that is being used for a notification service so no one will ever un it besides when it is scheduled.
August 31, 2012 at 6:56 am
Thanks I knew it was something simple and dumb i was just not thinking about. And i am dropping the table everytime after the stored procedure is run so i...
August 31, 2012 at 6:07 am
set FILETOZIP=c:\ue_english.txt
set TEMPDIR=C:\temp738
rmdir %TEMPDIR%
mkdir %TEMPDIR%
copy %FILETOZIP% %TEMPDIR%
echo Set objArgs =...
August 31, 2012 at 6:03 am
It would be hard for me to show my entire datasource.
but out of the sample below i have highlighted the one result i would want to pull back
Company ...
October 13, 2009 at 12:04 pm
I have altered my code to look like the following.
select Count(*)
FROM trWOHead WITH (NOLOCK)
WHERE Priority like '%RUSH%' and (Createdate>'6/9/2009' and Createdate<'6/11/2009') and (
(SELECT(DateDiff(dd, createdate, DeliveryDT)) As days,
...
June 11, 2009 at 2:43 pm
I actually think I may have gotten it. I am checking against some data now.. I will let you know either way... Thanks for all the help!
June 9, 2009 at 12:19 pm
Gianluca,
I dont see how this is going to provide me with a count for each different status type within each group...
June 9, 2009 at 11:25 am
Lowell When I run the code you give me those values end up only being 1 and 0
Do i need to do something within my report to get the...
June 9, 2009 at 11:19 am
I am not sure if that will really work. I still need to display all the fields that I was originally.
June 9, 2009 at 11:13 am
I need to get the count from the status field. The count has to be by department, and also a total count
June 9, 2009 at 11:00 am
SELECT A.ItemCode AS [Container ID], Cust.company AS Account, Dept.departmentname AS Department, A.ref1 AS [Alternate ID], A.fromdate AS [From Date],
...
June 9, 2009 at 11:00 am
Viewing 11 posts - 1 through 11 (of 11 total)