Viewing 15 posts - 151 through 165 (of 215 total)
If the positive amounts don't equal the negative amount then nothing happens, those amounts get added to the new table. I want to create a new table with the...
June 4, 2013 at 5:50 pm
I made an edit...to my original request the positive amount does equal the negative amount and those records get removed.
June 4, 2013 at 5:39 pm
This worked for me:
USE FSW_NZ_BIS_Sep12_S;
EXECUTE sp_MSforeachtable 'EXECUTE SP_PRGDS [?];';
Thanks!
June 4, 2013 at 1:20 pm
It runs some stats on the table. The sproc was built by someone else which is no longer with my company.
June 4, 2013 at 1:12 pm
Sorry, I forgot to specify I only need the units and the amounts. ie
comments:
5321063 HOLLAND BL 90X210 10 Unts ...
May 31, 2013 at 7:53 am
Haven't tested it but looks like this is what I need. Thanks!
February 17, 2013 at 6:22 pm
Sean Lange (2/21/2012)
February 21, 2012 at 8:08 am
I made minor fixes...but worked like a charm! Thanks!
CREATE PROCEDURE dbo.SP_AS_tblEmailHdr_Trig (@UserID as varchar(10))
AS
BEGIN
SET NOCOUNT ON
DECLARE @UserTable AS Varchar(50), @UserTable2 AS Varchar(50)
DECLARE @SQLDROP AS varchar(255), @SQLCREATE AS varchar(max)
DECLARE...
February 21, 2012 at 8:05 am
Thanks! I had to make a minor change and this is what worked for me. The only issue is that I linked the table to ms access and...
February 20, 2012 at 8:53 pm
sorry...i edited my original msg as it was not clearly laid out...
just in case..here it is again:
I have a trigger and I want to kick it off from a stored...
February 20, 2012 at 6:18 pm
How can i execute this in a select statement?
I can use this line below to return the records, but I want to be able to use it in any select...
February 13, 2012 at 9:24 am
I want to use this in a query i.e.
Select * from GetClaims 'Audit Number,Audit Year,Claim Number,Claim Key,Client Name,status','''AAFES''','''2010'''
How can I edit my script to do this?
February 10, 2012 at 12:19 pm
Also, I just turned this into a sproc and I want to allow for multiple AuditYears so how can I change it so that it will accept multiple years? I...
February 10, 2012 at 10:01 am
Viewing 15 posts - 151 through 165 (of 215 total)