Viewing 15 posts - 46 through 60 (of 86 total)
Sean Lange (12/19/2013)
Not quite sure what you want for output? What should the query do or return?
query should return if 10 continues nos is available in unused state ...
December 19, 2013 at 9:15 am
Sean Lange (12/19/2013)
vignesh.ms (12/19/2013)
Please consider the following data
create table #sampletbl
(
Category varchar(100),
Numbers varchar(100),
Status varchar(100)
)
insert into #sampletbl values ('A','29710000001','0')
insert into #sampletbl values ('A','29710000002','0')
insert into #sampletbl values ('A','29710000003','0')
insert into #sampletbl values...
December 19, 2013 at 8:50 am
All I know is ,
It will give us the dirty data ...
(ie)if update is going on, then it would not care about current values.. it will result whatever there on...
December 18, 2013 at 6:37 am
PSB (12/18/2013)
I have a table with the Group name and Total Count by group . I need to add a 'Total' and summation of all counts at the end ....
December 18, 2013 at 6:24 am
GilaMonster (12/18/2013)
vignesh.ms (12/18/2013)
If I parse the above query using ctrl+f5 it wont give any error. Then how we say it is a parse time error?
Because it occurs before execution starts....
December 18, 2013 at 6:19 am
Michael Valentine Jones (12/17/2013)
The catch is a run-time error handler, but the error you are getting is a parse time error that happens before the query is run.
I agree with...
December 18, 2013 at 3:05 am
oh okay...
thanks for the reply
November 26, 2013 at 5:53 am
Can I have query for creating triggers to achieve this ???
November 26, 2013 at 5:17 am
Thanks Lowell exactly what i need...
November 19, 2013 at 10:41 am
@ Cadavre :
Thanks for your understanding
Please explain how it works...?
November 6, 2013 at 7:33 am
Cadavre (11/6/2013)
-- Sample data
IF object_id('tempdb..#sample') IS NOT NULL
BEGIN;
DROP TABLE #sample;
END;
CREATE TABLE #sample (saledate DATETIME,...
November 6, 2013 at 7:32 am
Thanks for your replies friends...
* My query works what I'm intended to do.
* My expectation is I dont want to hard code the date.
I tried myself, following is...
November 6, 2013 at 5:21 am
Erland Sommarskog (9/17/2013)
vignesh.ms (9/17/2013)
this is very urgent somebody help...
In addition to Sean's comment - you also help yourself by using a more descriptive subject line for your post. I've noticed...
September 18, 2013 at 5:31 am
Sean Lange (9/17/2013)
September 17, 2013 at 10:27 am
Viewing 15 posts - 46 through 60 (of 86 total)