Viewing 15 posts - 3,691 through 3,705 (of 7,496 total)
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
kiran.chintala14 (5/20/2009)
May 20, 2009 at 3:49 am
TheSQLGuru (5/19/2009)
May 19, 2009 at 10:51 am
???????? :ermm:
You can add files of multiple disks to a filegroup, so disk size shouldn't be a problem.
Data will be spread over all files of the same filegroup (needs (clustering)...
May 15, 2009 at 7:09 am
I've seen udb sticks being used as sqlserver disk system for demonstartion purposes.
You know: a usb hub with 4 usb sticks on it, just to demonstarte hardware failure (pull out...
May 15, 2009 at 12:20 am
OP dated 04/2004 ?? 😉
another nice resource: http://sqlblog.com/blogs/paul_nielsen/archive/2009/05/09/why-use-stored-procedures.aspx
May 14, 2009 at 1:45 pm
Post the procs DDL if your dev cannot find an optimal solution 😉
You'll have a good chance people over here will !
May 14, 2009 at 12:30 pm
Viewing 15 posts - 3,691 through 3,705 (of 7,496 total)