Viewing 15 posts - 1 through 15 (of 27 total)
GilaMonster (1/15/2014)
January 15, 2014 at 5:47 am
I have my test & development environments on this VM too - so figure I'm better moving these to a new box and at least allowing the live environment to...
January 15, 2014 at 5:33 am
GilaMonster (1/15/2014)
Standard is hard-capped at 2GB of memory. It can't use more so the other 4GB of memory you have on that server is wasted. So the 1.6GB...
January 15, 2014 at 5:17 am
GilaMonster (1/15/2014)
That said, that looks like 32-bit without AWE or...
January 15, 2014 at 5:12 am
Plateau (1/15/2014)
Thanks man, will see what I can find in performance monitor!
Hi,
for total server memory (KB) I am getting the following
Last: 1671008
Average: 1670883
Minimum: 1670856
Maximum: 1671648
I was hoping that at...
January 15, 2014 at 5:07 am
Will reboot with this setting off and report back.
January 15, 2014 at 4:58 am
GilaMonster (1/15/2014)
Oh, and turn boost priority OFF. It's a setting that should almost never be enabled
Will do Gail, would you mind explaining this?
Not being argumentative just wanting/trying to understand
Dave
January 15, 2014 at 4:56 am
Thanks man, will see what I can find in performance monitor!
January 15, 2014 at 4:49 am
ChrisM@Work (3/6/2013)
You have a BEGIN at the top of the sproc - does it have a corresponding END?
That's it, oh god that was so obvious now
Thanks so much Chris
March 6, 2013 at 4:47 am
In fact if I strip it down even further I still get issues
Server: Msg 170, Level 15, State 1, Procedure STP_Agent_upload, Line 38
[Microsoft][ODBC SQL Server Driver][SQL Server]Line 38: Incorrect syntax...
March 6, 2013 at 4:40 am
Thanks Chris!
Oh good god, not sure how I couldn't see that... Well sleep deprivation I guess
I have changed the code to the below but still get an error -...
March 6, 2013 at 4:39 am
ChrisM@Work (3/6/2013)
Plateau (3/6/2013)
ChrisM@Work (3/6/2013)
You have single quoted a variable, making it a string-type constant: '@Date_Last_Payment'
Hi Chris,
I have temporarily changed it to a varchar - in the input parameters bit however...
March 6, 2013 at 4:20 am
ChrisM@Work (3/6/2013)
You have single quoted a variable, making it a string-type constant: '@Date_Last_Payment'
Hi Chris,
I have temporarily changed it to a varchar - in the input parameters bit however I still...
March 6, 2013 at 3:58 am
CREATE PROCEDURE [dbo].[STP_Agent_upload]
(
-- List Input Parameters
@Agent_Number VARCHAR(50), --column A
@Date_Last_Payment DATETIME,--column C
@policy_number VARCHAR (50),--column D
@Agent_Payment_Amount SMALLMONEY,-- [Net] -> this is column M
@Row_Number VARCHAR (100),--PASS this from application!
@Return_Message VARCHAR (255) OUTPUT
)
AS BEGIN
--List...
March 6, 2013 at 3:35 am
Viewing 15 posts - 1 through 15 (of 27 total)