Viewing 10 posts - 1 through 10 (of 10 total)
For some queries/utility we can avoid dependency of this type of util procedure by writing query directly.
e.g.
for ctrl + 7 write : select count(*) from
now for any database connected in...
June 22, 2014 at 11:42 pm
You can use,
ctrl + 6 for : select * from tablename
ctrl + 7 for : select count(*) from tablename
June 22, 2014 at 11:35 pm
Thanks
Its very usefull query
I had create stored procedure for it with inputdate parameter
Thanks again
December 21, 2012 at 3:40 am
Oh dear,
Its very tricky & helfull
Thanks
December 14, 2012 at 4:10 am
I think this error is because of number type column of oracle table.
if u give specific size in oracle then its not problematic like: number(5),number(5,2) etc...
I was getting error in...
February 24, 2012 at 2:33 am
Your syntax is right,
can u describe table of oracle?
February 24, 2012 at 1:00 am
Its right, cengland0
and This forum should want to define minimum version to use in question.
February 8, 2012 at 4:08 am
Where is the DATE datatype in sql server??????????
CREATE TABLE mytesttable
(
MyID INT IDENTITY
, mychar VARCHAR(20)
, mydate DATE DEFAULT GETDATE()
)
DECLARE @mytable TABLE ( i INT, d DATE);
INSERT dbo.mytesttable (mychar)
...
February 8, 2012 at 1:17 am
Viewing 10 posts - 1 through 10 (of 10 total)