Viewing 10 posts - 16 through 25 (of 25 total)
that yields proper result (^ is delimiter):
/* object_id^name^column_id^system_type_id^user_type_id^max_length^precision^scale
^collation_name^is_nullable^is_ansi_padded^is_rowguidcol^is_identity^is_computed^is_filestream^is_replicated^is_non_sql_subscribed^is_merge_published^is_dts_replicated^is_xml_document^xml_collection_id^default_object_id^rule_object_id
-105^name^1^231^256^256^0^0
^SQL_Latin1_General_CP1_CS_AS^0^1^0^0^0^0^0^0^0^0^0^0^0^0
-105^xtype^3^175^175^2^0^0
^SQL_Latin1_General_CP1_CS_AS^0^1^0^0^0^0^0^0^0^0^0^0^0^0
-105^type^14^175^175^2^0^0
^SQL_Latin1_General_CP1_CS_AS^1^1^0^0^0^0^0^0^0^0^0^0^0^0
*/
Note that our table is not in sys.system_objects.
sp_help SysOurTables
/*
Column_name^Type^Computed^Length^Prec^Scale
^Nullable^TrimTrailingBlanks^FixedLenNullInSource^Collation
:::
Name^varchar^no^40^ ^
^yes^no^yes^SQL_Latin1_General_CP1_CS_AS
:::
*/
sp_help sysobjects
/* Column_name^Type^Computed^Length^Prec^Scale
^Nullable^TrimTrailingBlanks^FixedLenNullInSource^Collation
name^sysname^no^256^ ...
December 29, 2006 at 8:02 am
checked collation. It is correct for all databases & both tables.
December 26, 2006 at 7:40 am
as stated at top, everything is collation of SQL_Latin1_General_CP1_CS_AS.
Only interested in SQL 2005 (2000 is working fine).
December 17, 2006 at 10:55 am
the columns are *not* identical ... unless SQL changed the rules for identifiers.
`sp_dbcmptlevel ThisDb, 80` only worked yesterday; it stopped working today. Any chance the...
December 13, 2006 at 7:22 pm
Solved CREATE DATABASE on other drive. Permissions issue.
Windows Start -> Administrative Tools -> Component Services -> Services (local) -> MSSQLServer, right clicked Properties.
LogOn was `Local System account`, changed to `This...
January 26, 2006 at 1:09 pm
but may be related. No solution yet.
Getting very similar situation when trying to make a new database.
SQL Server 2005 just installed (after uninstalled 2000 but...
January 12, 2006 at 12:46 pm
What language are we storing in the db? Case matters most to the people writing reports, so if your data is sEnSitive so...
July 11, 2005 at 9:53 pm
Curious if Microsoft is going to do anything to keep it from crashing in this case. Should be possible to have it report db name as `problem with owner`...
September 18, 2003 at 3:07 pm
Thank you all for responding. While I know SQL does not guarantee any consistent sorting ( despite inconsistencies in the documentation which imply you can do it), I am...
March 19, 2003 at 8:11 pm
needs to be order of entry, which precludes an index in this case.
We did go to latest service pack in late January... can't recall if it was 3 or 6.
March 10, 2003 at 6:15 pm
Viewing 10 posts - 16 through 25 (of 25 total)