Viewing 15 posts - 166 through 180 (of 206 total)
The same thing happen with text field, switching to varchar(max) fixed the problem.
I guess if you switch to varbinay(max) your problem will also be fixed (you still need to reindex...
September 24, 2010 at 3:50 am
I heard magic fairies were very good at boosting server performance by 100% - 200% each time... :hehe:
September 23, 2010 at 7:37 am
Easiest way to upgrade is a backup/restore and then change compatibility.
Test it first outside production to make sure there are not depreciated SQL used.
Since you are busy upgrading, you might...
September 23, 2010 at 7:32 am
Use bcp.exe to get data to the disk, the output of SQLCMD is not really meant to be processed automaticaly.
September 23, 2010 at 7:27 am
Can you find the query generating the error?
September 23, 2010 at 7:18 am
Yes if all you want if the FreeSpace (without total space).
If you really want to use SQL server you can use fsutil (in xp_cmdshell 'fsutil volume diskfree C:') to get...
September 22, 2010 at 8:49 am
What about the witness log?
It looks like the mirroring was broken a few minutes before the principal reboot, that explains why there was no failover when the principal rebooted (mirroring...
September 22, 2010 at 8:41 am
In short the collation tells the server how to sort character data (char, varchar, etc ...).
Changing the server collation is not easy, quickest way is to either reinstall the server...
September 22, 2010 at 8:27 am
I think Data Pump to bulk load stuff between Oracles instances, and SQL*Load to load data from a flat file.
Haven't tested so i'm not 100% sure, that's what the Oracle...
September 22, 2010 at 8:06 am
Have a look at SSIS, it should be the perfect tool for you.
September 22, 2010 at 5:10 am
The best way to fix your problem is to rewrite your initial query without the view and to simplify it as much as possible.
The more complicated a query is, the...
September 22, 2010 at 4:55 am
The easiest way is to run a trace on this user (loginname = 'domain\user'), in the trace you'll have a cpu, read and write column. That'll give you a prety...
September 22, 2010 at 3:55 am
What about ROUND(DATEDIFF(yy, PerBirthDate, GETDATE()), -1)
?
September 21, 2010 at 3:57 am
The first line is not required (at least it's not the reason you forgot your password 🙂 )
You can also get rid of the MUST_CHANGE, since you'll be the one...
September 21, 2010 at 1:51 am
Its the SQL Server Service (usualy MSSQLSERVER or MSSQL$<instancename>), the SQL Server Agent is a SQL scheduler.
September 21, 2010 at 1:11 am
Viewing 15 posts - 166 through 180 (of 206 total)