Viewing 5 posts - 16 through 20 (of 20 total)
hi,
How i can give permision for non admin users. ???
Thanks
August 6, 2008 at 6:04 am
Here no error messege showing. ( i dont know how to debug stored procedure ).
Just i tried to get dataset(im using c# asp.net) . Always my dataset blank. then...
July 15, 2008 at 5:55 am
Thanks Karl for your reply.
But i heared Cursurs are memory huter. So if i use cursors will it take more time or are there any othere way to do this
March 25, 2008 at 5:21 am
I dont clear with this answer. So if there are more than two criterias to search, is that theory applicable or not.
ex-
SELECT RefNumber, ProjectName, Type, Details,...
March 6, 2008 at 8:18 pm
CREATE PROCEDURE [dbo].[VIEW_REPORTS]
@BRC_START_DATE datetime,
@BRC_END_DATE datetime,
@Hild_Branch varchar(50),
@REPORTSIZE int,
@RPT_REPORT_NAME varchar(10),
@USER_ID INT,
@ReportType_Code nvarchar(50)
AS
declare @MonthFirstdate as varchar(50)
declare @Month as varchar(50)
Declare @Year as varchar(50)
set @year =year(@BRC_END_DATE);
set @Month='';
if MONTH(@BRC_END_DATE)<10
begin
set @Month= '0' + month(@BRC_END_DATE);
set @MonthFirstdate=...
October 23, 2007 at 6:19 am
Viewing 5 posts - 16 through 20 (of 20 total)