Viewing 15 posts - 1 through 15 (of 18 total)
Because the second procedure is running inside the first one, after commit trans, first all transactions will be commited and after that will the second procedure be executed? I am...
June 16, 2015 at 2:51 pm
Hi all,
I do not want to confuse people, especially when they are trying o help me.
Below is a sample of how stored procedure seems :
PROC1
-----Procedure1 is calling with...
June 16, 2015 at 12:12 pm
The second procedure( which does not work correct some times) is being executed after a "Commit Transaction" inside the first proc. Is there a possibility that rows are still...
June 16, 2015 at 9:06 am
Hi,
I have created a new table with name 'testjohn '
CREATE TABLE [dbo].[testjohn](
[ITEMID] [nvarchar](25) NOT NULL,
[AVAILPHYSICAL] [numeric](28, 12) NOT NULL,
[INVENTDIMID] [nvarchar](20) NULL,
[INVENTLOCATIONID] [nvarchar](10) NOT NULL,
[MODIFIEDDATETIME] [datetime] NOT NULL,
CONSTRAINT [I_ITEMINVENTIDX] PRIMARY...
September 19, 2013 at 6:00 pm
You are right, there is another trigger that gives RecId ( A field that our ERP needs).
I will check it.
Thanks for the reply
September 19, 2013 at 4:53 pm
Thanks, I will try Insert Statement.
September 16, 2013 at 2:08 pm
Hi,
Our ERP is Microsoft Dynamics AX (DAX). The trigger is on table InventSum
CREATE TABLE [dbo].[INVENTSUM](
[ITEMID] [nvarchar](25) NOT NULL,
[POSTEDQTY] [numeric](28, 12) NOT NULL,
[POSTEDVALUE] [numeric](28, 12) NOT NULL,
[DEDUCTED] [numeric](28,...
September 16, 2013 at 11:51 am
Again update from trigger is very slow.
September 12, 2013 at 11:17 am
HI,
This is the code
ALTER TRIGGER [dbo].[CREATE_ITEM] ON [dbo].[ITEMMASTER]
AFTER INSERT,UPDATE
AS
DECLARE @ITEMID NVARCHAR(21)
DECLARE @ITEMNAME NVARCHAR(40)
DECLARE @AMOUNT NUMERIC(15,2)
DECLARE @REFRECID NUMERIC(18,0)
DECLARE @UNITID NVARCHAR(5)
DECLARE @ITEMGROUPID NVARCHAR(17)
DECLARE @WHOLESALEAMOUNT NUMERIC(15,2)
DECLARE @AMDEVICEBRANDID NVARCHAR(5)
select @ITEMID=ITEMID COLLATE Greek_CS_AS...
September 12, 2013 at 8:54 am
Do I have to manually update stats when I move cluster?
I have observe,some times, a very slow select to some big tables and views when I move from one node...
March 9, 2011 at 3:43 pm
Hi,
First of all thank you for your answer. The aim is high availability and minimal data loss.
From what I have read, I have come to the conclusion for clustering and...
February 10, 2011 at 7:20 am
Viewing 15 posts - 1 through 15 (of 18 total)