Viewing 15 posts - 151 through 165 (of 248 total)
vishal.gamji (8/18/2010)
August 18, 2010 at 8:35 am
Vincy-856784 (8/10/2010)
If you have mixed mode and you're the Administrator (windows) for that server then you don't...
August 11, 2010 at 5:39 am
Adiga (8/10/2010)
August 10, 2010 at 6:11 am
Steve Jones - Editor (8/1/2010)
First google result for me: http://www.mssqltips.com/tip.asp?tip=1046
I think I have missed this link......Thanks A Lot for your help, now I am able to decrypt the views.
August 2, 2010 at 5:09 am
Henry Treftz (7/28/2010)
Do a google search on
decrypt sql 2005 stored...
August 1, 2010 at 5:06 am
You Need to run Below commands after renaming the Server B to Server A
sp_dropserver 'ServerB'
sp_addserver 'ServerA’, 'local'
select @@servername
July 28, 2010 at 1:15 am
Chris Morris-439714 (7/26/2010)
-- create sample dataDROP TABLE #Sample
CREATE TABLE #Sample ([Instance name] varchar(60), [Verified Name] varchar(60))
INSERT INTO #Sample ([Instance name], [Verified Name])
SELECT 'USMKESQLPRD001\SQL001', NULL UNION ALL
SELECT NULL, '' UNION ALL...
July 26, 2010 at 8:19 am
ColdCoffee (7/26/2010)
Select instancename,verifiedname from table where instancename is not null and verifiedname is not null
As it seems as simple, i guess i am missing something.....
July 26, 2010 at 5:27 am
Below is the Original result:
Instance name Verified Name
USMKESQLPRD001\SQL001 ...
July 26, 2010 at 5:22 am
Can any Body please help me in this ?
Your help much appriciated....
July 21, 2010 at 2:56 am
Animal Magic (7/20/2010)
create table testcharindex(Name varchar(50),
HasSpace bit default(0)
)
insert into testcharindex (Name)
select 'Morris'
union
select 'Taylor'
union
select 'Two names'
union all
select 'Taylor ' -- Notice the trailing space
select * from testcharindex
--not using trim
update testcharindex
set...
July 20, 2010 at 8:04 am
Can you please provide me the sample script for it ?
July 20, 2010 at 5:49 am
Thanks for the response...at last i got a response..
🙂
July 15, 2010 at 12:45 pm
Viewing 15 posts - 151 through 165 (of 248 total)