Viewing 15 posts - 166 through 180 (of 535 total)
you DA BOMB!!!
UPDATE dbo.table
SET MyColumn = replace(MyColumn, 'mages/pubs/columbia', 'en/graphics/columbia')
where MyColumn LIKE '%images/pubs/columbia%'
worked like a charm.
October 1, 2010 at 8:53 am
Tried
Update dbo.table
Set MyColumn = replace(pageImage, 'images/pubs/columbia', 'en/graphics/columbia');
and
Update dbo.TableSet MyColumn = replace(pageImage, '%images/pubs/columbia%', '%en/graphics/columbia%');
Both Changed ALL rows in the column instead of just the...
October 1, 2010 at 8:42 am
awesome! I'll give it a shot!!
October 1, 2010 at 8:32 am
i have 7ZIP 4.6.5 and I don't have the LZMA2 option in 7-zip ????
September 27, 2010 at 7:12 am
7Zip is the way to go
September 27, 2010 at 2:51 am
homebrew01 (9/26/2010)
What got bigger ? The .MDF or .LDF ?
The MDF grew by several GB.
September 26, 2010 at 6:32 pm
Thank you for the tips. I'll check them out.
September 26, 2010 at 6:26 pm
I did take a full backup after and I will defrag the indexes.. Thank you : )
any suggestions for getting the backups any smaller ?
September 26, 2010 at 5:43 pm
I found out what the problem was. Bad input file!! got a new txt file this week and it ran through fine.
took the old file and...
September 26, 2010 at 5:28 am
received the same error. The error is on a bulk insert - with transformations - into a table from a 1.6GB text file.
We are going to try...
September 20, 2010 at 12:48 pm
Ran this:
EXEC sp_configure 'show advanced options', 1
RECONFIGURE
sp_configure 'max server memory', 6144
RECONFIGURE
GO
EXEC sp_configure 'show advanced options', 0
RECONFIGURE
Still only using 5GB of memory. Cycle the instance to take effect??...
September 20, 2010 at 5:45 am
sp_configure 'min server memory', 1024
RECONFIGURE
GO
sp_configure 'max server memory', 6144
RECONFIGURE
GO
Do you know if this will require a reboot? I'm assuming I would just apply this change to my active...
September 17, 2010 at 12:34 pm
Thank you !! So you think that increasing the MAX memory to say 6GB from 5GB might do the trick?
I will use the hotfix is nothing else works.
September 17, 2010 at 11:08 am
One problem I fouund is that SQL Server 2005 Standard Edition on a 64bit
System does not support Lock Pages in Memory without CU 4 for Service Pack
3. ...
September 17, 2010 at 10:29 am
another thing I have to considered.. our legacy DTS packages work fine with production volume data on our Production system which is sql server 2005 on 32bit (also clustered)...
September 17, 2010 at 7:25 am
Viewing 15 posts - 166 through 180 (of 535 total)