Viewing 15 posts - 136 through 150 (of 323 total)
do all types of validations at front-end, this is one of the best validation, validation like length, datatype, etc.
If any error occurs, the identity column increment the value.
Otherwise, in you...
November 10, 2008 at 11:00 pm
If you are using SQL 2008, you can pass table to stored procedure as a variable.
For more info see SQL 2008 BOL.
November 10, 2008 at 10:49 pm
* Check the Execution Plan and optimize the query.
* Make transaction is very less.
* Do update statistics wherever required.
* Use hints in query.
* Create relevant indexes on table.
* Always use...
November 10, 2008 at 10:35 pm
use OPENROWSET, for more info: http://www.mssqltips.com/tip.asp?tip=1202
November 10, 2008 at 9:34 pm
use WAITFOR is one of the good option.
November 10, 2008 at 9:31 pm
SQL Native Client not properly uninstalled, NET 2.0 frame work not properly installed for previous installation. I think while installing SP2 you are geeting this problem.
As of my knowledge,...
November 10, 2008 at 7:41 am
try like the following:
CREATE PROCEDURE dbo.cte_test( @CustomerNumber Int)
AS
BEGIN
if (@CustomerNumber = 100 or @CustomerNumber > 0)
...
November 10, 2008 at 7:12 am
Try like this:
* Ping the SiteA server thro' command prompt. (eg: ping ).
* Connect with SiteA IP Address.
* From SiteC: connect the Site A server using SQL Server Query...
November 10, 2008 at 5:56 am
Try like this:
* First you can create one folder in network drive and share it with full permission.
* Map the network drive (ex: created above folder)
* Open the SQL Server...
November 10, 2008 at 5:46 am
chek the link, and modify it: http://www.mssqltips.com/tip.asp?tip=1202.
November 10, 2008 at 4:54 am
SQL Server License information can be found in Control Panel.
Otherwise, do this way:
* Create one common login in Server A, B, C and give the permission as db_owner, db_readwrite.
*...
November 10, 2008 at 4:49 am
use Microsoft's Data Publishing wizard, you can copy table from one database to another database includes schema & data.
November 10, 2008 at 4:46 am
check the below link for more info:
http://www.microsoft.com/sqlserver/2005/en/us/pricing-licensing-faq.aspx
November 10, 2008 at 4:25 am
chek the TCP/IP setting and authorization of windows, etc. I think problem with per user / seat licence in SQL Server.
November 10, 2008 at 4:24 am
Dom,
First uninstall SQL Server 2005 completely (includes SP2). for more information see the link: http://support.microsoft.com/kb/909967
(in the above link, follow the Step 2 as it as).
After that install SQL Server...
November 10, 2008 at 4:17 am
Viewing 15 posts - 136 through 150 (of 323 total)