Viewing 15 posts - 3,691 through 3,705 (of 7,503 total)
- Why do you think you need the cross join ??
- What's the relationship of that x-joined table to the other tables ?
June 1, 2009 at 9:49 am
did you read these good blog posts ?
By Jimmy May:
May 29, 2009 at 11:58 am
just make sure they don't encrypt everything.
That would be total overkill !!
Every column that gets encrypted will be converted (implicit) to varbinary(max) !!
These columns cannot be indexed,....
Also mention, you...
May 27, 2009 at 2:16 pm
veritas_86 (5/26/2009)
May 26, 2009 at 12:57 pm
at MS
- the general page: http://www.microsoft.com/sqlserver/2008/en/us/default.aspx
- "Upgrading to SQL Server 2008" msdn.microsoft.com/en-us/library/bb677622.aspx
Helps you with preparing and planning your migration
- "Microsoft SQL Server...
May 26, 2009 at 12:35 am
actually, you don't need another sql instance.
You might as well just create a new userdb (tools) and export your data from master to your userdb.
After that, it may be best...
May 24, 2009 at 7:51 am
Mayank Khatri (5/23/2009)
May 24, 2009 at 3:28 am
can you post the DDL for [HSI].[usp_RaguTest_Reports] ?
"##report" is a global temp table that seems to be missing.
May 23, 2009 at 7:58 am
A separate instance seems the way to go, since you cannot exclude sysadmins authority, unless you are willing to pay the price of encryption.
And even then it is just a...
May 23, 2009 at 7:51 am
By default sqlserver has a \backup folder in its installation directories.
It is being pointed to if you make a backup using the GUI (SSMS)
(object explorer / right click on the...
May 20, 2009 at 9:49 am
There are some other options :
from within sqlserver these settings can influence the number of cpus a query can use:
/* show the current settings */
exec sp_configure 'affinity mask' ;
exec...
May 20, 2009 at 6:39 am
I cannot see why simply posting the code is an issue ??
The error states you are trying to implicitly convert a NTEXT column !
from Books online SQL2000
varchar[(n)]
Variable-length non-Unicode character data...
May 20, 2009 at 5:45 am
DNA is right on top of your issue !
Golden rule is:
- pre-size your files as accurate as you can (prefer having to much allocated !)
- if autogrowth is enabled ,...
May 20, 2009 at 4:00 am
Off course SQLServer will only use multiple cpus if possible and needed.
If someone issues a query stating 'option (maxdop 2)' it will only use max 2 cpus to resolve that...
May 20, 2009 at 3:55 am
Viewing 15 posts - 3,691 through 3,705 (of 7,503 total)