Viewing 15 posts - 91 through 105 (of 203 total)
Try This
sp_MSforeachdb 'use ? SELECT TOP 20 db_name()[Database], OBJECT_NAME(id)[Table], Rows
FROM sysindexes
WHERE indid < 2
AND id in (SELECT OBJECT_ID(NAME) FROM [sysobjects] WHERE type = ''U'')
AND rows...
April 6, 2004 at 4:10 am
does dbo.DensityGrad have SET NOCOUNT On ?
April 6, 2004 at 12:18 am
Export registry for following key.
HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL Server\80\Tools\SQLEW\Registered Servers X
and import it opn other machines.
i am not sure about authentication.
April 2, 2004 at 6:12 am
Can you open a Query Analyzer session to targeted linked server from console of this particular server ?
April 2, 2004 at 5:53 am
April 2, 2004 at 5:49 am
What was the result of this contest ?
April 2, 2004 at 5:48 am
I came across a simm. situation as well.
At that time, I issued a
ALTER DATABASE <DBANME> SET SINGLE_USER WITH ROLLBACK IMMEDIATE
ALTER DATABASE <DBANME> SET MULTI_USER WITH ROLLBACK IMMEDIATE...
April 2, 2004 at 5:42 am
use "DBCC UPDATEUSAGE" on those database / tables / indexes.
also
if any of those tables has undergone a ALTER TABLE and dropped varchar, text columns then use "DBCC CLEANTABLE"
And...
April 2, 2004 at 5:36 am
If it is only Data migration from one SQL 6.5 server to another SQL 2000 box, you could use DTS or BCP.
I would have done following.
1. Generate Script for...
March 25, 2004 at 10:48 pm
Not direct command in TSQL to alter a identity column.
Even EM does a DROP and RECREATE (and a rename) internally.
To confirm this, go to design view of a table...
March 25, 2004 at 12:17 am
I am not sure, how you thought of a table read in master.
Query Plan shows only constant scan for this type of query.
select CAST(DATEPART(yyyy, '2003-01-10') AS VarChar(4))
...
March 24, 2004 at 5:38 am
Upgrading Databases from SQL Server 6.5 (Upgrade Wizard)
You can convert data from Microsoft® SQL Server™ version 6.5 to the formats for SQL Server 2000 using the SQL Server Upgrade...
March 24, 2004 at 5:03 am
March 24, 2004 at 4:40 am
Viewing 15 posts - 91 through 105 (of 203 total)