upload sql database to the host environment
found this tool that makes it easier to upload sql database to the host environment
http://www.codeplex.com/sqlhost
Achievement provides the only real pleasure in life
found this tool that makes it easier to upload sql database to the host environment
http://www.codeplex.com/sqlhost
Posted by SF at 4:58 pm 0 comments
select TABLE_NAME, CONSTRAINT_NAME, STATUS
from USER_CONSTRAINTS
where TABLE_NAME like 'INVOICE';
the word after 'like' must be in capital, otherwise you won't get any result
Posted by SF at 10:39 pm 0 comments
create a homepage skin with the LogoPane instead of the Logo skin token
all other pages will use a skin that has standard Logo skin token
Posted by SF at 10:19 pm 0 comments
the background color of my site is mainly dark-red and black, the text is in white color. When i click on a link to open another page, the background always flash in yellow color and return back to normal. what happened?
answer:
there is a background color set to be yellow in the css, check it
Posted by SF at 10:16 pm 0 comments
update DNN site from version 3.1 to 3.3.7, now when i open the site in IE7, the version number is displayed together with the page title on the IE7 tab:
My Site > Home (DNN 3.3.7)
in order to get rid of the stuff in '()', Log in as superuser ("host"), go to host settings in host menu and uncheck "show copyright credits".
Posted by SF at 10:14 pm 0 comments
Only the text with quotes is case sensitive.
Posted by SF at 10:10 am 0 comments
CREATE TABLE student(
student_no NUMBER(3) NOT NULL,
age NUMBER(2) CHECK(age>18),
gender CHAR(1) CHECK(gender='m' or gender='f') NOT NULL
);
Posted by SF at 10:26 am 0 comments
SELECT * FROM tab;
Posted by SF at 2:42 pm 0 comments
select column_name from information_schema.columns where table_name ='authors'
Posted by SF at 2:42 pm 0 comments
select * from sysobjects where type = 'U' and uid=user_id('dbo')
Posted by SF at 2:22 pm 0 comments
SELECT * FROM tab;
Posted by SF at 11:39 pm 0 comments