Viewing 15 posts - 16 through 30 (of 63 total)
You have to check the credential that are used to run the job, if you are using any proxy account or any other account you have to make sure either...
July 21, 2010 at 8:53 am
You need not to repeat this thing on other node since it is actice/passive configuration ,so after runnnig the query you have mentioned or right click on the instance and...
July 13, 2010 at 11:20 am
Try This
USE [SchoolLM]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[usp_GetMgrEmail]
@locationId VARCHAR(36) = null,
@identifier VARCHAR(10) = 'School',
@emailAddress VARCHAR(50) OUTPUT
AS
BEGIN
SET NOCOUNT ON;
IF(@identifier = 'School')
--SELECT 'School'
SELECT @emailAddress = (s.Sch_Id + '@' + b.Brn_Domain)
FROM...
June 5, 2009 at 1:11 pm
Use Len() function .
like select * from tablename where len(ltrim(rtrim(cloumnname))) >9
HWH..
June 5, 2009 at 12:37 pm
use bulk insert and point to location where you want to store the output of query .
January 23, 2009 at 3:20 pm
How backup was taken - native or any third party tool
What is version of SQL Servers from where backup and where restore is happen
November 3, 2008 at 3:17 pm
By default SQL Server reserve 2 Gb for maximum memory, you have to increase it to your prefered value if there is one lne instance and ther is no other...
October 24, 2008 at 12:25 pm
I am suspecting how can you restore SQL Server 2008 database on SQL Server 2005 coz reverse compatibility is not what SQL Server supports.
October 21, 2008 at 12:02 pm
I guess if your SP needs to pull/push data to other databases for diffrent servers then Linked Server , Open query aresimple solutions but if you means using SP in...
October 17, 2008 at 2:40 pm
What version/edition of SQL Server you have installed?
October 17, 2008 at 1:35 pm
DBCC CLEANTABLE reclaims space after a variable-length column or a text column is dropped by using the ALTER TABLE DROP COLUMN statement. The command does not reclaim space after a...
October 15, 2008 at 11:44 am
your Subscriber should be equal or have to have higher version than Publisher so if your Publisher Server is 2000 then Subscriber should also be atlease 2000 not 7.0
October 14, 2008 at 12:56 pm
Can you share the Logic/Code of SP to better dig in ....
October 10, 2008 at 9:14 am
Viewing 15 posts - 16 through 30 (of 63 total)