Viewing 15 posts - 331 through 345 (of 545 total)
select name,dbid from sys.sysdatabases
get the DBID from above result then
select object_name(id,yourdatabase id),id from sys.sysobjects
here id=1371151930
check the name of the Object and figure out if this is a index or other...
July 3, 2008 at 2:35 pm
Pl can you post the result for
dbcc page (cm_hoo_mpg, 1, 2948, 3)
If you are ready to Take a HIT at possible Data Loss (Maybe a record or someting)
use this:...
July 3, 2008 at 2:26 pm
Check the DEFAULT Database Assigned to the WINdows LOGIN.
Change it to master.
July 3, 2008 at 2:05 pm
Use IMPORT/EXPORT Wizard to copy Table across Servers.
Check the Indexes after you move the Tables.
Or Use Linked server like : Select * into PRODSERVER.DatabaseName.dbo.productiontable from localTablename
But using this method, the...
July 3, 2008 at 1:45 pm
select * from master..syslogins
where password is NULL
and to Filter out NT ID's
select * from master..syslogins
where password is NULL
and isNTName <>1
July 3, 2008 at 1:24 pm
Mohini, Your Judgement is Correct. But what vidhya tried to Explain was:
Transactional replication is based upon reading the transaction log of an originating server.
Transactional replication is often used for high...
July 3, 2008 at 1:14 pm
Which SQL Server Edition/Version are you on?
What are your PRocessors like? and How Many?
MEMORY?
HDD:: how much space in each partition?List all partitions
List Databases and Sizes
Are there any other applications Running...
July 3, 2008 at 12:51 pm
did you rename the server after installation.
July 3, 2008 at 12:46 pm
Can you run DBCC CHECKDB (dbname) WITH ALL_ERRORMSGS, NO_INFOMSGS and post the RESULT here..
July 3, 2008 at 12:28 pm
did you change the Database compatibility level to 90 after the migration.
and also did you check for orphaned logins in the database.
Use databasename
sp_change_users_login 'REPORT'
to update the login info:
sp_change_users_login 'UPDATE_ONE',loginname','loginname'
did...
July 3, 2008 at 12:19 pm
Try Creating a Table Variable and get the output on the Table Variable.
OUTPUT inserted.Id into @tablevariable.
July 3, 2008 at 12:06 pm
change your compatibility level to 90(SQL 2005) and
Always after and upgrade run the following statements.
DBCC UPDATEUSAGE (aspnetdb) and DBCC CHECKDB(dbname). This makes sure nothing went/is wrong in the database....
July 3, 2008 at 11:44 am
Yes, the solutions by AART is the way to go..
July 3, 2008 at 11:24 am
Viewing 15 posts - 331 through 345 (of 545 total)