Viewing 15 posts - 11,581 through 11,595 (of 49,562 total)
Go into SQL configuration manager, right click that SQL service and select Stop.
September 25, 2013 at 4:57 am
stevewes (9/23/2013)
September 25, 2013 at 4:53 am
Koen Verbeeck (9/25/2013)
Sure.
SELECT 'Nothing' FROM myTable;
Et voila, the row still has the value A.
I can simplify that...
;
September 25, 2013 at 2:09 am
dastagiri16 (9/25/2013)
hi,any single statement to complete this task
Um...
GilaMonster (9/25/2013)
September 25, 2013 at 2:08 am
So update it, then update it back?
Update MyTable
SET City = 'B'
WHERE City = 'A';
Update MyTable
SET City = 'A'
WHERE City = 'B';
You can't do it in one statement, because updating a...
September 25, 2013 at 1:53 am
enriquezreyjoseph (9/24/2013)
But some post say that..Dynamic Sql is a powerful tool...
Indeed, but you don't use a jackhammer to put a nail in the wall. Powerful tool != use all the...
September 25, 2013 at 1:45 am
Koen's query will work because SQL does updates in two phases, first where it reads the data second where it changes.
If it's not doing what you want, please post actual...
September 25, 2013 at 1:38 am
Why are you altering model? If you're adding files to TempDB, add the files to TempDB, don't mess with model.
September 25, 2013 at 1:27 am
You've got the queries from profiler, so that should be enough to get started. If you're still having something outside of SQL allocating memory and forcing SQL to reduce its...
September 25, 2013 at 1:26 am
You can't.
Have you found and fixed whatever was allocating memory and forcing SQL to reduce its memory usage?
September 24, 2013 at 5:38 pm
http://channel9.msdn.com/Events/Speakers/Mark-Russinovich The two Mysteries of Memory Management.
September 24, 2013 at 3:51 pm
No.
Virtual address space is 2GB on 32 bit, many hundreds of TB on 64 bit. Commitable virtual memory is physical memory + page file size.
It's complex, there's a couple of...
September 24, 2013 at 2:15 pm
That's not database corruption (you'd get errors from SQL if it was, not adobe)
Without seeing how you're importing, make sure that nothing's getting truncated anywhere or converted to incorrect data...
September 24, 2013 at 12:57 pm
dan-572483 (9/24/2013)
Windows Server 2003
SQL Server 2005
1GB Ram
How to best divide the 1GB of RAM between the OS and...
September 24, 2013 at 12:20 pm
Viewing 15 posts - 11,581 through 11,595 (of 49,562 total)