Viewing 15 posts - 841 through 855 (of 1,109 total)
You can disable check constraints and foreign keys by executing for each of them the
ALTER TABLE mytable NOCHECK CONSTRAINT name_of_constraint
for the indexes you can disable them (see alter index),...
October 1, 2007 at 6:50 am
Sys.columns has a default_object_id. This is the id of the default, which you can access via the sys.default_constraints system view. The sys.default_constraints shows the definition of the default in the...
October 1, 2007 at 6:40 am
Lester Policarpio (10/1/2007)
October 1, 2007 at 4:44 am
Babu Mannaravalappil (10/1/2007)
I already wrote an application using SMO to iterate through all the objects in a given database and populate a tree. The business...
October 1, 2007 at 4:43 am
Do check your database's compatibility level after the restore, and set it if you are not happy with it.
see sp_dbcmptlevel
Regards,
Andras
October 1, 2007 at 3:03 am
ckmoied (10/1/2007)
...
I don't know how to use syscolumns. Please give example.
syscolumns contains a row for every column/paramter in your database.
select * from syscolumns
In syscolumns you get the identifier of...
October 1, 2007 at 2:40 am
FerasGer83 (9/28/2007)
what's the benefit of backing up log files?
if we have the data, what we could need log...
October 1, 2007 at 2:13 am
Babu Mannaravalappil (9/27/2007)
I am using .net 2/C# to write an application that will populate a tree with all the objects available in any given database on a particular Sql...
October 1, 2007 at 2:04 am
Babu Mannaravalappil (9/30/2007)
Is there a way to extract the script for an existing database object (table for example) programatically using T-SQL system objects or procedures? I know I...
October 1, 2007 at 1:58 am
David Putman (9/28/2007)
October 1, 2007 at 1:51 am
andri (9/30/2007)
Anyone can help me with my issue,
I migrate my database from MS-SQL 7.0 to MS-SQL 2005,
then for this table, every time i did an update to the...
October 1, 2007 at 1:40 am
Jai (10/1/2007)
HiHow to find Record length in a table in bytes
You can calculate this yourself. The basic formula is along the lines of:
6 (status bits, .. header like stuff)...
October 1, 2007 at 1:35 am
x-portal (9/28/2007)
September 28, 2007 at 8:33 am
Unfortunately your exception message got truncated. java.lang.Short is a class, and the full exception message should contain a bit more information 🙂
Have you tried debugging the above application? If...
September 28, 2007 at 8:23 am
mkhines (9/28/2007)
I set up on a laptop...
September 28, 2007 at 7:23 am
Viewing 15 posts - 841 through 855 (of 1,109 total)