Viewing 15 posts - 4,096 through 4,110 (of 5,103 total)
BTW You are not using a named instance, are you?
March 9, 2005 at 3:33 pm
I don't agree with the 16 bit theory. From your link it is suggested that sql will use Tabular Data Stream (TDS) 4.2 which is independent of the 16 bit...
March 9, 2005 at 3:18 pm
I am shooting in the dark here but:
If you move the db to SQL Server 2000 and run
EXEC sp_dbcmptlevel 'yourdb', 65
are you able to connect?
March 9, 2005 at 2:07 pm
if you are using the sa password on the registration of the server on EM right click on it, select edit registration properties and update sa password and also make sure...
March 9, 2005 at 1:59 pm
Have a look at TEXTCOPY /? on the binn directory it allows in/out of text/image fields
HTH
March 9, 2005 at 1:34 pm
two issuses here:
1. Insert must specify field list to work correctly (This is considered a best Practice) Like: insert into tblname (fld2) select 1
2. Al long as you don't have...
March 9, 2005 at 12:09 pm
If you refresh every day overwriting the end server you can:
1. Truncate all tables at destination
2. Put the Destination recovery mode in BULKLOGGED
3. Use bcp to pump data in
3. Change...
March 9, 2005 at 10:44 am
try DBCC SHOWCONTIG ('TableName') WITH TABLERESULTS
Look at AverageRecordSize, MaximumRecordSize, MinimumRecordSize
Cheers!
March 9, 2005 at 10:32 am
Yep,
setup will prompt you for that!
March 9, 2005 at 10:03 am
yes you can use
dbcc checkident ('TblName', RESEED, 200600000)
just keep in mind the limits on the maximum int value could be exceded I would recommend to use two digits instead...
March 9, 2005 at 10:01 am
sofiane,
N' means you are going to use a unicode version of the string. Is usually required by nchar,nvarchar and ntext types. (btw sysname = nvarchar(128) )
the systax means: <semantical meaning,...
March 9, 2005 at 9:54 am
I think you have found the anwser to your own question. You have gone above the maximum capacity specifications for SS 2000.
Solution: Redesign
HTH
March 9, 2005 at 9:08 am
Ramesh,
The views on sql server are EXPANDED by default when creating the execution plan therefore using the correct indexes on the base tables (like
March 9, 2005 at 8:41 am
>>>For clarification you can index views but only the Enterprise, Developer, and Evaluation versons of SS2K support them.<<<
Allow me to differ
Indexed views are suported in the standard edition also and...
March 9, 2005 at 8:37 am
To Use This method the access to the table has to be allowed only through stored procedures, then on the sp you will check for the Lock.
Cheers,
March 8, 2005 at 2:37 pm
Viewing 15 posts - 4,096 through 4,110 (of 5,103 total)