Viewing 15 posts - 16 through 30 (of 63 total)
There is scope for another function work hours in a daterange
regards
john
October 24, 2007 at 10:33 pm
Use Transactions is better then rowloc
begin tran
1.INSERT INTO tab1
2.DELETE from tab1
commit tran
regards
john
March 20, 2007 at 1:15 am
A small correction
create proc MarriageStatus (@EPNAME VARCHAR(10), @status VARCHAR(3)
AS
BEGIN
UPDATE EMPLOYEES
SET STATUS=CASE WHEN @status='YES' THEN 'Y' else 'N' end
where
January 25, 2007 at 12:20 am
create proc MarriageStatus (@EPNAME VARCHAR(10), @status VARCHAR(3)
AS
BEGIN
UPDATE EMPLOYEES
SET STATUS=CASE WHEN @status='YES' THEN 'Y' else 'N'
where
emp_name=@EPNAME
END
go
exec MarriageStatus 'Rajdeep' ,'N'
send...
January 25, 2007 at 12:18 am
Theoretically speaking select distinct is the best way but, which are the fields you want to be distinct may change in each case.
Virtually these are the problems of people who...
March 14, 2006 at 9:30 pm
information schema objects are extractions of sys tables see,
select * from sysobjects where name like 'sys%'
But I think you are seeking some other thing,posting your corret requirement will enable other experts...
October 19, 2005 at 12:37 am
Hi ,Hi
Poor Developer Guy ,They are dreeming but to certain extent you can help them ,say for example adding filtering options to...
September 28, 2004 at 9:56 pm
I agree .
I have few doubts regarding this
First of all if my domain is DOM1 then how shall I do this in sqlserver1 running in PDC ,
sp_grantdbaccess...
September 17, 2004 at 9:22 pm
Good Idea ,
Once in bluemoon import means ,just save the file in dbase format and then import
regards
john
September 3, 2004 at 1:20 am
This problem is can be sorted out by either
September 2, 2004 at 2:13 am
We have
We have to appreciate this work ,this is going to be use full while we are going for development of access control portion of very large database applications.
For...
August 18, 2004 at 12:18 am
Oh my lord,
There is no need to say much on this error , While parsing a query the first parser will go for a replace for the alias names...
July 25, 2004 at 11:46 pm
Standards will come only after ideas , else the fate of many ISO standards would have been some thing else .
To make it client independent better go for...
July 24, 2004 at 1:20 am
Hay you are doing good job but consider my suggestion also,the discussion is moving away from the topic "Generate Next Numbers with SQL Server"
CREATE TABLE TBL_SEQ_PATTERNS...
March 11, 2004 at 12:34 am
you can just populate a log table with select Last_Disp , Kount=count(*) ,en_date=getdate() from dbo.vw_AZ_Leads_Dialable group by Last_Disp also its more general ,and works even if...
February 10, 2004 at 7:03 am
Viewing 15 posts - 16 through 30 (of 63 total)