Viewing 15 posts - 16 through 30 (of 81 total)
a
November 30, 2012 at 5:29 am
USE [Orderex]
GO
/****** Object: StoredProcedure [dbo].[GetReverseHoldingsByStockTIDMDetailed] Script Date: 11/30/2012 12:06:17 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Alter PROCEDURE [dbo].[GetReverseHoldingsByStockTIDMDetailed]
(
@user-id as varchar(7),
@LoginType as varchar(5),
@AccType varchar(3),
@AccountActive varchar(1),
@SFAClientType varchar(20),
@TIDM varchar(7),
@SEDOL...
November 30, 2012 at 5:19 am
d
November 30, 2012 at 5:17 am
thanks mate..I am just going in a meeting at 11. Will get back to you. Actually I can removed the 'ALL' parameter from the query. But some on the remiser...
November 30, 2012 at 3:58 am
deleted
November 30, 2012 at 2:56 am
I cannot change the table def. Let me try crazyss answer.
November 30, 2012 at 2:48 am
CREATE TABLE [dbo].[Client_oe_info](
[Acct_no] [varchar](7) NOT NULL,
[Client_name] [varchar](70) NOT NULL,
[ClientShortName] [varchar](60) NULL,
[Remisier_code] [char](7) NOT NULL,
[ADDRESSCODE] [decimal](18, 0) NULL,
[Branch] [tinyint] NULL,
[Acct_type] [char](1) NULL,
CONSTRAINT [PK_Client_oe_info_1] PRIMARY KEY CLUSTERED
(
[Acct_no] ASC
)WITH (PAD_INDEX ...
November 30, 2012 at 2:31 am
ok I have attatched the execution plan for actual stored proc.
November 30, 2012 at 2:19 am
Hello I have completed the post. How do I attach the execution plan in here?
November 30, 2012 at 2:08 am
sorry if i was unclear.
basically I am writing a stored procedure for a user to check if a certain clientcode does not hold a certain tidm.
CREATE TABLE #holding(
[TIDM] [varchar]...
November 26, 2012 at 8:33 am
use like
something like.
(name like '%' +@name + '%' name is null)
November 12, 2012 at 10:02 am
when total < 100 then '< 100'
when total >= 100 and total < 1000 then '>= 100 and < 1000'
when total >= 1000 and total < 10000 then '>= 1000...
November 9, 2012 at 8:07 am
Sorry I am back again. I need to manipulate the order in which the value is displayed. Is it possible>?
November 9, 2012 at 7:45 am
Hey anthony thanks for the reply. The query works fine but I was just curious about the with clause as I have never used it before. can you through some...
October 30, 2012 at 6:18 am
Viewing 15 posts - 16 through 30 (of 81 total)