Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

database - Cannot drop tablespace in oracle -


hi,

problem 1

when try drop tablespace using drop tablespace command, fails , error message tablespace not exist.

when select * dba_tablespaces, can see tablespace name.

problem 2 when try connect oracle using aquadata, "connection failed:- no more data read socket"

please suggest

"when execute query select * dba_tablespaces, tablespace name shown in lower case."

by default oracle sql case insensitive. is, both of these statements equivalent:

drop tablespace ts1 including contents /  drop tablespace ts1 including contents / 

however, when comes storing metadata oracle uses upper case object names. doesn't matter unless when created database objects wrapped names in double-quotes. @ point oracle becomes case sensitive.

it appears such situation. need issue command tablespace name in double quote:

drop tablespace "ts1" including contents / 

Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -