Viewing 15 posts - 256 through 270 (of 323 total)
use sp_msforeachtable to drop the identity column in all tables.
January 8, 2008 at 12:17 am
Grant Fritchey suggestion is good, do the same way. I was developed my database similar to this notation.
🙂
January 4, 2008 at 5:59 am
use DBCC Updateusage, DBCC PROCCACHE, DBCC SHRINKDATABASE command along with DBCC Shrinkfile get better performance as well as good for backup also. Just try it.
January 4, 2008 at 5:54 am
which operating system you are using ?
Suggestion:
> Repair IIS, if not possible then reinstall.
> Repair SQL Server.
> Repair ASP.NET.
The above things not working, then completely uninstall and reinstall all components.
December 31, 2007 at 1:19 am
use "sp_rename" see BOL for more information.
December 31, 2007 at 1:16 am
At the time SQL Server 2005 installation option, you can select option like "Sample Databases", at that time, you can install sample databases. Other wise you can download the...
December 31, 2007 at 1:06 am
See the below link, it may help to you:
Microsoft SQL Server Database Publishing Wizard:
------------------------------------------------
🙂
December 4, 2007 at 7:35 am
If you are using SQL 2005, one built in exe is exist for compare tables.
Exe Name: tablediff.exe
Location: C:\Program Files\Microsoft SQL Server\90\COM
For more information see SQL BOL.
🙂
December 4, 2007 at 7:30 am
If you want to delete particular month data, use where clause in delete statement.
November 29, 2007 at 3:57 am
Use 3rd party tools or see the below link, it may helps to you.
🙂
November 29, 2007 at 3:36 am
use "sp_spaceused" command, for more information, see SQL BOL.
November 29, 2007 at 3:28 am
use using(...) {....}, for more information see MSDN.
November 28, 2007 at 3:10 am
try the following:
update
set col2 = right (col1, 1)
November 28, 2007 at 2:31 am
Stop and re-start the MS-SQL Server Service thro' windows service manager.
November 28, 2007 at 2:13 am
Viewing 15 posts - 256 through 270 (of 323 total)