Viewing 15 posts - 661 through 675 (of 1,253 total)
mcloney (8/4/2008)
I hate to be a "me too" kinda...
August 5, 2008 at 12:20 am
Hi
Only foreignkeys and check constraints can be "disabled". The syntax is - ALTER TABLE Table1
NOCHECK Constraint ForeignkeyConstraintName.
PrimaryKeys cannot be disabled, they can be dropped. Dropping them removes the...
August 3, 2008 at 11:40 pm
My point was to take away the "IN" clause and use a join or like some one else pointed out use "exists".
August 3, 2008 at 11:18 pm
Hi
When you disable the primary key all the related foregin keys will be disabled. Be carefull with this as data integrity may be lost. With the contraints and foregin keys...
August 1, 2008 at 4:31 am
maruf24 (7/30/2008)
table1.ttt,table1.c_f_name,cy.cmd from table3 alias,
cm table1,table2 cy where alias.colname=table1.colname
and cy.colname = table1.colname and table1.id='354'and
alias.colname in (select colname from table2 where colname
like '365464') and colname='A' and...
August 1, 2008 at 4:17 am
i could'nt download the storedproc.
August 1, 2008 at 3:31 am
Hi
How big is the db you are trying to restore. How long did you wait before restarting sql service?
August 1, 2008 at 2:53 am
Hi
Are your protocols enabled. Check the sql server configuration manager for this.
This can also happen due to network issues. check that out.
August 1, 2008 at 12:05 am
If u want to know about new functionalities in sql 2005 BOL is a good place to start.
July 31, 2008 at 2:52 am
Hi
no such issues for me. r u doing this inside a proc.
July 30, 2008 at 4:34 am
You can set collations at these hierarchial levels.
server,database,columns. The server collation is default for the database and columns unless collations are modifed at any level. if you change the...
July 30, 2008 at 4:18 am
wondering why you would need a table with a single column that contains a lot of zeros.
July 30, 2008 at 4:03 am
Another option is to use the ALL operator. You can use it as <> ALL. I dont know if its faster or not.
July 29, 2008 at 4:14 am
Viewing 15 posts - 661 through 675 (of 1,253 total)