Viewing 15 posts - 451 through 465 (of 761 total)
vinu512 (5/10/2012)
Thank you very much.Seems like "WaitForDelay" was what I was looking for.
Uhhm....guys...this may be asking for too much..... :crazy:
But, can send "some kind of a response" to the client...
May 11, 2012 at 5:15 am
dwain.c (5/11/2012)
--drop table temptable
Create Table temptable (id int not null primary key, val1...
May 11, 2012 at 2:58 am
These are the queries based on your requirements:
--Creating Table
Create Table Ex
(RecNum Int,
Patient_ID int,
Patient_FirstName varchar(10),
Emp_ID int,
Emp_FirstName varchar(10),
App_Datetime DateTime )
--Inserting Sample Data
Insert Into Ex
Select 1, 1234,...
May 11, 2012 at 1:56 am
ACinKC (5/10/2012)
May 11, 2012 at 12:37 am
Jeff Moden (5/10/2012)
You're welcome. Take a look at one of the many uses for it in the following article...
Thanx Jeff. The link was very useful.
May 11, 2012 at 12:35 am
Is this better Swan?
--Creating Tables
Create Table Ex
(id int not null primary key Identity(1,1), -----=====Identity Column is required for...
May 11, 2012 at 12:08 am
This will do it:
--Creating Table
Create Table Ex
(IDint,
FileCount int,
FileSize int,
Country char(1) )
--Inserting Sample Data
Insert Into Ex
Select 1,2,150,'X'
Union ALL
Select 2,9,500,'A'
Union ALL
Select 2,2,100,'B'
Union ALL
Select 2,3,200,'C'
Union ALL
Select 2,1,50,'D'
Union ALL
Select 3,10,800,'P'
Union...
May 10, 2012 at 6:50 am
This might work:
select
Count(case when void = 0 then count(ID) Else NULL end) as Countofsuccess,
Count(case when void = 1 then count (ID) Else NULL end) as countoffailure
from test
If you are...
May 10, 2012 at 5:41 am
Thank you very much.
Seems like "WaitForDelay" was what I was looking for.
May 10, 2012 at 3:48 am
sudha.kotapati (5/9/2012)
Thank you very much
You're welcome. 🙂
May 9, 2012 at 11:17 pm
Sean Lange (5/9/2012)
vinu512 (5/9/2012)
here is something that I worked up. Hope it helps:
--Creating Tables
Create Table Ex
(id int not null primary key Identity(1,1), ...
May 9, 2012 at 11:15 pm
drew.allen (5/9/2012)
vinu512 (5/8/2012)
Todd's Logic is very nice. Didn't hit me when I was trying it.
But it was just lacking something.
I tweaked it a little and got it working. 😀 Here's...
May 9, 2012 at 10:41 pm
OK Jeff.
I was expecting it to work the other way round. It can be really useful. 😛
Thanks 😎
May 9, 2012 at 10:10 pm
Viewing 15 posts - 451 through 465 (of 761 total)