Viewing 15 posts - 4,591 through 4,605 (of 7,502 total)
you may want to read Jeff Modens "Tally table" article.
In sql2005 you can use ranking functions. Check BOL.
September 7, 2008 at 3:21 am
If you have heavy disk activity, it may be your extending tempdb-process that gets a timeout, resulting in the errormessage you've seen.
As already stated, tempdb is one of the working...
September 7, 2008 at 3:20 am
For the moment we are using vbscript to gather WMI information.
You may as well put that into a clr module and get your info that way.
Keep in mind you'll need...
September 7, 2008 at 3:12 am
X64 is not Itanium, but is 64 bit.
64-bit can directly address way more than 16Gb http://techreport.com/articles.x/8131/2 or http://en.wikipedia.org/wiki/X86-64
Thats why you don't need to enable AWE anymore on 64-bit.
You need to...
September 7, 2008 at 2:57 am
you could deny a user access to a table using:
DENY { ALL [ PRIVILEGES ] }
| permission [ ( column [ ,...n ] )...
September 6, 2008 at 11:31 am
There are articles at SSC regarding db ownership.
e.g. http://www.sqlservercentral.com/articles/Advanced/understandingobjectownership/1966/
We don't use sa for login, but have all databases owned by sa.
All sysadmin stuff is being performed using our windows-admin-accounts. (dbas...
September 6, 2008 at 11:28 am
You could offer the dba a weeping tissue because he's the one messing up. They will have to modify their code.
As already stated : If you want order, you need...
September 6, 2008 at 11:20 am
MS has released a Upgrade assistant for Access.
(free tool)
http://www.microsoft.com/sql/solutions/migration/access/default.mspx
September 6, 2008 at 7:20 am
Warren Peace (9/5/2008)
September 5, 2008 at 12:40 pm
As usual, security has been optimized in sql2005 !
For a proc to work in a database context, it needs to be in that database,
except for procs (residing in master...
September 5, 2008 at 12:34 pm
marco.crescini (9/5/2008)
...ten mnutes ago i rechanged the transaction log model to simple(minimun)...
- How big is your transaction log file ?
- what's the growth size for the log file ?
- is...
September 5, 2008 at 7:45 am
Everything will still work, but will only use a single db-thread to accomplish the queries.
So it may need more time to complete, but your error will nolonger occur.
You may want...
September 5, 2008 at 6:06 am
Can you apply the workaround (i.e. disable parallelisme) ?
from KB319184
WORKAROUND
To work around this behavior you can either:
•Use the query hint (MAXDOP=1) to avoid a parallel query plan.
-or-
•Set the max degree...
September 5, 2008 at 4:11 am
Did you read and apply the hotfixes mentioned in KB918483 http://support.microsoft.com/kb/918483
September 5, 2008 at 3:32 am
are you using AWE ? http://support.microsoft.com/kb/899761
September 5, 2008 at 3:09 am
Viewing 15 posts - 4,591 through 4,605 (of 7,502 total)