Viewing 15 posts - 8,521 through 8,535 (of 18,926 total)
Domagoj Orec (1/19/2009)
Ninja's_RGR'us (1/19/2009)
Been guilty myself of a few typos over the years... so no...
January 19, 2009 at 8:26 am
That wouldn't have been so funny if you hadn't repeated it twice in a row :D:w00t::P.
Been guilty myself of a few typos over the years... so no harm done :).
January 19, 2009 at 7:14 am
That's worth repiting Grant :w00t::D:hehe:.
January 19, 2009 at 6:51 am
RBarryYoung (1/18/2009)
--Test:
Select
Replace( Replace(ColumnName, '_5X7', '5X7'), '5X7', '_5X7')
From YourTable
Where ColumnName like '5X7'
--change:
Update YourTable
Set ColumnName
= Replace( Replace(ColumnName, '_5X7', '5X7'), '5X7',...
January 19, 2009 at 5:31 am
This is completly untested, make sure you try that on a backup copy of the data.
Also your question seems incomplete so there might be so caveat to this solution.
TEST.
SELECT ColumnName,...
January 18, 2009 at 3:31 pm
Jeff Moden (1/17/2009)
RBarryYoung (1/17/2009)
Hey, I just read it. That is a great article!
Awesome... thanks for looking it up, Barry. Her mastery of the written word is just an...
January 17, 2009 at 5:36 pm
GilaMonster (1/17/2009)
http://www.sqlservercentral.com/Forums/FindPost638650.aspx
Question was "I didn't start an explicit transaction, I don't have a backup, how do...
January 17, 2009 at 4:56 am
Script the db on 2005, recreate it on 2000 (make sure evertyhing still works in the sps, views, etc).
Import the data from the old server to the new one.
There's nothing...
January 16, 2009 at 8:50 am
I'd give that to Jeff... he's NOT paid to do all that, unlike Steve.
January 16, 2009 at 6:58 am
It's already the longest thread on this board, it happened a couple weeks ago I think, and at least a couple 100s of posts ago.
January 16, 2009 at 5:48 am
There's always and only 1 answer to that question... it depends.
Make your own scenarios and test them.
January 15, 2009 at 11:42 am
CROSS APPLY is only used with functions that return resultsets based on pamareters. It's been created to allow the use of those function in an inner join when the...
January 15, 2009 at 11:21 am
Select TblName from Oracle.DbName.Owner.SystemTables (assuming they exist).
Loop in that list and execute this :
Select * into LocalDb.dbo.? FROM Oracle.DbName.Owner.?
That however doesn't transfer any constraint, indexes, identity properties.
January 15, 2009 at 6:18 am
Doh!!!, I just figured it out
SET @X = '278 * (1 / 4) - 2'
1 / 4 = 0 because both numbers are Ints.
if you use 1.0 instead of 1,...
January 15, 2009 at 6:01 am
This is a hack, but it works...
DECLARE @X AS VARCHAR(100)
DECLARE @sql AS nVARCHAR(4000)
SET @X = '8*1/2-6'
SET @sql = 'SELECT ' + @X
PRINT @sql
EXEC(@SQL)
Please notice that I removed the parenthesis to...
January 15, 2009 at 5:57 am
Viewing 15 posts - 8,521 through 8,535 (of 18,926 total)