Viewing 9 posts - 1 through 9 (of 9 total)
It's not problem to write stored procedure but later I need rto select some values from....(function)
December 2, 2003 at 5:46 am
I tried that but I can't execute stored procedure inside a function?
How to solve that?
THanks, Jelena
December 2, 2003 at 5:35 am
Thanks,
I know it can be done in EM, but I thought to make that in code.I read it can not be done in code...
Jelena
April 4, 2003 at 2:38 am
CREATE TRIGGER .... ON [dbo].[...]
FOR INSERT
AS
DECLARE @AccTransCode varchar(10)
--triger insertuje u tabelu AccTransaction izvrsena narocila (prodaje)
DECLARE @TransactionID int
DECLARE @TransactionIDNew int
DECLARE @BuyerReference varchar(10)
DECLARE @SellerReference varchar(10)
IF UPDATE(BuyerReference) and UPDATE(SellerReference)
BEGIN
EXEC GetNextIdentity 'AccTransaction'...
February 21, 2003 at 9:03 am
CREATE TRIGGER .... ON [dbo].[...]
FOR INSERT
AS
DECLARE @AccTransCode varchar(10)
--triger insertuje u tabelu AccTransaction izvrsena narocila (prodaje)
DECLARE @TransactionID int
DECLARE @TransactionIDNew int
DECLARE @BuyerReference varchar(10)
DECLARE @SellerReference varchar(10)
IF UPDATE(BuyerReference) and UPDATE(SellerReference)
BEGIN
EXEC GetNextIdentity 'AccTransaction'...
February 21, 2003 at 9:02 am
The data arrive in .txt format, but my problem is how to connect client every day to that internet adress and download file?
I think there wili be no problem to...
February 18, 2003 at 6:45 am
When I update options on Sql Server it doesn't affect to default options.After aplication connection I always have:
set quoted_identifier on
set implicit_transactions off
set cursor_close_on_commit off
set ansi_warnings on
set ansi_padding on
set ansi_nulls on
set...
January 27, 2003 at 4:26 am
Thanks,but I still can't see letters è and æ, instead I always see c.
Jelena
January 8, 2003 at 9:21 am
Viewing 9 posts - 1 through 9 (of 9 total)