Viewing 15 posts - 901 through 915 (of 1,518 total)
Fraggle (9/30/2008)
Is the /3GB swith active? If so, this could explain it.If not, then I am clueless.
Fraggle
Thank you, that makes sense.
I'm looking for the boot.ini file but...
September 30, 2008 at 10:26 am
abhijeetv (9/29/2008)
September 29, 2008 at 8:43 am
We tried the move for mail accounts on servers using both OUTLOOK (sql mail) and SMTP (db mail) to send mail.
For SQL Server 2005 instances using smtp (db mail): All...
September 26, 2008 at 11:59 am
Steve Jones - Editor (9/26/2008)
September 26, 2008 at 11:21 am
Will Summers (9/26/2008)
To be fair though, there are some new nice features as well. Here is one: being able to monitor a job running in the little popup dialog, after...
September 26, 2008 at 11:08 am
It's true that SSMS 2005 has its problems. My main peeve is the excessive memory resources it requires. I have often had to use Task manager to kill the SSMS...
September 26, 2008 at 10:15 am
Sorry guys, but I'm not getting the right results.
Take this NUMERIC(16,2) value: 615.00
When I use:
="$" & Format(Fields!col1.Value,"##,###,##0.00")
I get: $615615.00
When I use:
=FormatNumber(Fields!col1.Value, 2, , ,TriState.True)
I get syntax error.
When I...
September 26, 2008 at 8:18 am
Marios Philippopoulos (9/25/2008)
Glen (9/25/2008)
= "$" & Format(Fields!Field1.value,"##,###,##0.00")thank you! I'll try that.
Actually, this is not giving me the right results:
I have this value in the database: 615.00000
In the report it shows...
September 25, 2008 at 3:27 pm
Glen (9/25/2008)
= "$" & Format(Fields!Field1.value,"##,###,##0.00")
thank you! I'll try that.
September 25, 2008 at 12:58 pm
Registry: back up the Microsoft SQL Server node under HKEY_LOCAL_MACHINE -> SOFTWARE -> Microsoft.
Installation: copy the SQL installation folder to a safe location, preferably on another machine or network share....
September 25, 2008 at 9:32 am
John Marsh (9/20/2008)
Does this problem happen every time or is it just a one of?
If it has just happened once then may be check the account under which you are...
September 20, 2008 at 5:10 am
Vivien Xing (9/18/2008)
Additional info, it is a reporting database. The fragmentation is very bad.
Clustered indexes are most beneficial in range queries, ie. those including clauses (such as GROUP BY,...
September 18, 2008 at 10:08 am
dmc (9/17/2008)
September 17, 2008 at 5:20 pm
I don't think it's possible but I'd be very interested in being proven wrong.
September 17, 2008 at 5:09 pm
Run the following query on a schedule and store in a table for later analysis:
SELECT
OBJECT_NAME( s.[object_id] ) AS TableName
,i.name AS IndexName
,s.user_updates
FROM
sys.dm_db_index_usage_stats s
INNER JOIN
sys.indexes i
ON
s.object_id = i.object_id
AND...
September 17, 2008 at 2:16 pm
Viewing 15 posts - 901 through 915 (of 1,518 total)