Viewing 15 posts - 286 through 300 (of 449 total)
Like others in this posting, we haven't even completed our SQL 2000 upgrades. It takes time and money, not to mention there was a steeper learning curve with SQL 2005. ...
May 18, 2007 at 6:18 am
Are you using WININTERNALS? It writes event log entries that state that exact message. If possible, disable WININTERNALS and you'll see the entries disappear. I have our server admin looking into...
May 9, 2007 at 5:27 am
As alluded to earlier, a transaction log which is growing, is usually indicative of a lot of transactions, from INSERT/UPDATE/DELETES to DDL statements. With the growth of the transaction log coupled with...
May 2, 2007 at 5:39 am
Yes, you can access SQL Server 2005 Express Edition with the Management Studio from SQL Server 2005 Developer Edition.
April 30, 2007 at 5:21 am
Yes, you can install the 32-bit version of SQL Server on a Windows 64-bit OS. The differences are the 32bit/64bit differences.
April 23, 2007 at 5:24 am
What type of replication and publication? Depending on this you may be able to replicate with SQL 2000 to 2005. Here's an exerpt from the books on-line.
Subscriber version depends on...
April 11, 2007 at 5:43 am
Dont use the 2000 wizard. What does the query plan show. Are there a lot of TABLE SCANS, or INDEX SCANS, HASH JOINS (memory intensive), BOOKMARKS?
Double check to make sure...
April 11, 2007 at 5:31 am
Other than resorting to the last SQL 2000 backup, as mentioned above, you cannot go back to SQL 2000.
The only other technique is to export the data from SQL 2005...
April 4, 2007 at 7:05 am
The previous post is correct. Here's something else to consider:
Add a ProductCodeSuffix column that contains the "C".
OR
Just return the ProductCode with a "C" concatinated at the end. You could use a view.
1...
March 7, 2007 at 7:17 am
If you haven't already noticed, you cannot DEBUG script on 64-bit. It doesn't stop at break-points. The only lame way I found to debug is to add the old MSGBOX...
December 20, 2006 at 5:40 am
As stated in the previous reponse, you cannot restore 2005 db to a 2000 database. Your only option is to recreate the schema, then export/import the data.
December 15, 2006 at 5:12 am
Basically, that's what merge replication does. When a change is made at subscriber or publisher these changes will be merged so that all data is the same, barring row-filters which...
December 14, 2006 at 5:21 am
Have you considered a full install instead of the upgrade? Create a new SQL 2005 instance, then upgrade the databases individually by restoring, or using DETACH/ATTACH. Ideally you would want...
December 8, 2006 at 5:13 am
Open Server Network Utility
Select TCP/IP
Check "HideServer"
October 16, 2006 at 5:09 am
Viewing 15 posts - 286 through 300 (of 449 total)