Viewing 15 posts - 61 through 75 (of 76 total)
Thanks Matt.
I'll try the UDF solution first.
March 25, 2009 at 2:10 pm
I think there migght be another way to skin this cat...
If I could get the [item type] table results in a concatenated format in the CTE, that would pretty much...
March 25, 2009 at 11:59 am
Sorry about the delay in reporting back ...
I tried the idea proposed by Lowell, on the same day. I had to try a modified version as my table structure...
March 10, 2009 at 10:39 am
Like I pointed out in the example, the value in ID column doesn't necessarily have t match the integer value in the 'VARCHAR ID' column
March 9, 2009 at 1:47 pm
Ramesh,
Thanks for the solution, it works great.
Now I'll try to build it using Dynamic SQL, as there could be 10 - 15 code tables involved and we don't always know...
February 12, 2009 at 9:51 am
I'd suggest you also read this article.....
http://www.sqlservercentral.com/articles/Administration/61680/
February 10, 2009 at 10:08 am
FULL backups do not effect the Log Shipping thats in place.
But if you do not want to affect anythig else try using 'COPY_ONLY' clause in your BACKUP DATABASE command.
hope it...
November 17, 2008 at 1:53 pm
Backups are upto date as of the minute they finish i.e. all the transactions that happen during the backup process are also backed up (if they are commited before the...
November 17, 2008 at 11:20 am
Thanks again David.
Thats exactly what I tried and it worked.
Unconventional solutions for unconventional situations....
_Ub
November 17, 2008 at 8:27 am
Thanks for the reply David.
The problem, for me, is more with the table definitions than with the data. I know I said 'data too' in the post, but if...
November 14, 2008 at 3:09 pm
Are you familar with backup and restore process?
Right Click on database >> Tasks >> Backup
similarly...
Right Click on database >> Tasks >> Restore
November 14, 2008 at 3:00 pm
Is it a local server (same machine as you are on) or a different server?
Some Sql Server Editions do not allow 'remote connections' by default.
You want to open SAC [Surface...
November 14, 2008 at 2:35 pm
Yes.. thats what I heard too. SP3 will be out sometime in December this year, definitely before the end of the year.
September 30, 2008 at 8:19 am
Great Suggestion Steve... Now I have another good resource to add to my library.
As always thanks a lot.
Steve Jones - Editor (9/8/2008)
September 8, 2008 at 12:35 pm
This is what we use:
ALTER FUNCTION dbo.Translate
( @SourceVARCHAR(8000)
, @ReplaceCharOrder VARCHAR(8000)
, @ReplaceWithCharOrderVARCHAR(8000)
)
RETURNS VARCHAR(8000) AS
/* * * * * * * *...
August 6, 2008 at 8:54 am
Viewing 15 posts - 61 through 75 (of 76 total)