Viewing 15 posts - 241 through 255 (of 323 total)
navigate to the below url:
Link: http://weblogs.sqlteam.com/peterl/archive/2008/07/16/How-to-get-IP-address.aspx
August 7, 2008 at 5:59 am
can you try the following way:
selectt2.Name
,t2.GroupName
,[Data1]= casewhen(t2.Data1 = 1)then t1.Data1
when(t2.Data1 = 0)then 0
end
,[Data2]= casewhen(t2.Data2 = 1)then t1.Data2
when(t2.Data2 = 0)then 0
end
,[Data3]= casewhen(t2.Data3 = 1)then t1.Data3
when(t2.Data3 = 0)then...
August 7, 2008 at 5:52 am
Just try like the following way:
Re-install / repair .NET Frame work 2.0 (with sp1)
Re-Install / repair SQL Management Studio.
Install SQL 2005 SP2 with latest patches.
Re-Start the SQL Server Services.
Problem is...
May 28, 2008 at 1:40 am
you can navigate to the below link:
http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/CISQL2005ASCS.mspx
🙂
May 28, 2008 at 1:13 am
Check the Remote Host TCP/IP port configuration.
Check the configuration setting by typing the following command at Run prompt
SQLServerManager.msc
May 27, 2008 at 4:35 am
It's very simple, you can download the Microsoft Publishing Wizard from CodePlex site:
May 27, 2008 at 4:23 am
goto windows services and select SQL Server instance, choose properties and navigate to Log on tab...
March 20, 2008 at 5:40 am
go to the Start -> Program Files -> Microsoft SQL Server 2005 -> Configuration Tools -> Surface Area Configuration
and enable relevant properties.
March 20, 2008 at 5:33 am
use some third party tools (eg. Redgate tools, etc) to compress the backup data and then transfer data over WAN.
March 20, 2008 at 5:29 am
use some DBCC commands like DBCC UPDATEUSAGE, DBCC FREEPROCCACHE, DBCC DROPCLEANBUFFERS, DBCC CLEANTABLE, ...
for more information see SQL BOL.
March 20, 2008 at 5:22 am
If you are using SQL 2005, use TableDiff.exe, more information see the SQL BOL. It is a very good tool provided by Microsoft.
Just try it.
February 12, 2008 at 7:40 am
see SQL BOL for more information as well as example.
January 8, 2008 at 2:28 am
if you have any backup of database (which contains your sp), then restore it and find your sp.
January 8, 2008 at 12:27 am
use sp_msforeachtable to drop the identity column in all tables.
January 8, 2008 at 12:25 am
Viewing 15 posts - 241 through 255 (of 323 total)