Viewing 15 posts - 421 through 435 (of 535 total)
I tried sp_cycle_errorlog last night and also stopped and started the instance. I still have no logs??
May 22, 2007 at 5:45 am
Thanks for everything!!! Here is the code I ended up using:
UPDATE MYTABLE
SET COL2= PARSENAME(REPLACE(COL1, '\', '.'), 1) + '@' +
PARSENAME(REPLACE(COL1, '\', '.'), 2) + '.com'
WHERE COL1 LIKE '%DOMAIN\%'
go
UPDATE MYTABLE
SET...
April 27, 2007 at 12:36 pm
Thank you. With all this good info.. I'm going to try and figure it all out. I made a copy of the table and I'll use that to test..
All...
April 27, 2007 at 7:40 am
Wow. Thank you so much. That helps alot!
Perhaps you can help with something a little more complicated? (I am SO hoping that I am NOT going to have to do this...
April 27, 2007 at 3:16 am
Here is the link for MS SQL Server 2000 sp4 download
You will need to install the Database Components (Download file: SQL2000-KB884525-SP4-x86.EXE)
If you have Analysis Services installed along with...
April 2, 2007 at 7:36 am
That all sounds good. thank you. I'm just having trouble getting started. don't I need visual studio to actually write the reports? not sure where to get my hands on...
February 28, 2007 at 5:43 pm
This is the view scripted out.
CREATE VIEW dbo.VW_Genre_Catgry_Shows
AS
SELECT dbo.Shows.Show_No, dbo.Shows.Show_Name, dbo.Shows.Show_Format, dbo.Categories.Category_Code, dbo.Categories.Category_Desc,
dbo.Genres.Genre_Code, dbo.Genres.Genre_Desc
FROM dbo.Genres INNER JOIN
dbo.Categories ON dbo.Genres.Genre_Code = dbo.Categories.Genre_Code INNER JOIN
dbo.Shows ON...
December 12, 2006 at 11:22 am
I tried the replace you mention..
here is my select statement.. returns 522 rows
select * from schedule_storer where Storer_Show_Name = 'AMERICA''S HORSE'
Here is my Select Replace.. says it affects...
December 7, 2006 at 7:31 am
sorry.. I think I missed something on this one..
December 7, 2006 at 7:18 am
Thanks All. I'm certain I would have found the sytax for the REPLACE in BOL - admittedly I didn't look - but I did try and figure out the wildcard...
December 7, 2006 at 5:11 am
Thank you so much.. both worked!!!!!!!!!!!!!!!
Kind of on the same note... Now that I have been able to list all of my records using
select * from My_Table where show_name...
December 6, 2006 at 11:53 am
so you replace the apostrophe in Hunter's with double quotes?
I tried it and it returned zero rows ???
December 6, 2006 at 9:50 am
Viewing 15 posts - 421 through 435 (of 535 total)