Viewing 15 posts - 16 through 30 (of 55 total)
Any help would be much appreciated...
February 18, 2010 at 9:36 am
The best book I ever read...it will make your basics rock solid...
Wrox.Beginning.SQL.Server.2005.Administration
February 18, 2010 at 7:18 am
Unfortunately, it is an old project and the application cannot not be upgraded to support SS2005 for time being. May be in future. Therefore I need to setup this server...
February 18, 2010 at 7:15 am
it is a requirement of a project.
February 17, 2010 at 3:06 pm
You can do one thing, remove the indexes before you start the operation and once done apply them back. It will be much faster.
February 17, 2010 at 11:29 am
See this link for more information..
February 17, 2010 at 9:00 am
this one as well..
SELECT SUBSTRING(text,
-- starting value for substring
CASE WHEN statement_start_offset = 0...
February 12, 2010 at 8:00 am
You can get the same information by running following query
SELECT * FROM
sys.dm_exec_query_stats
CROSS APPLY
sys.dm_exec_sql_text(sql_handle)
I hope this helps
February 12, 2010 at 7:58 am
No it cannot...
February 12, 2010 at 7:08 am
roelofsleroux (2/2/2010)
Its basically to avoid JOIN statements. I have a suspicion that it could have...
February 2, 2010 at 3:51 am
sgambale (2/1/2010)
February 1, 2010 at 11:37 am
dba_neo (2/1/2010)
My Rebuild,Reorganize index job has been failing because of the following error,it is scheduled to be executed in only one db and the db is in simple mode.
ON...
February 1, 2010 at 10:14 am
Tara-1044200 (2/1/2010)
i load fresh data every month about 50GB.any thgouts on this process or is there a scopre fro improvement ?
Can you provide more information on your process? Like, what...
February 1, 2010 at 10:12 am
roelofsleroux (2/1/2010)
The table stores daily stock market prices for over 8000 instruments(stocks) per day
DateKey INT PK
InstrumentKey INT PK
Op FLOAT
Cl FLOAT
Hi FLOAT
Lo FLOAT
WAVG FLOAT
Vol FLOAT
Status CHAR(1)
Cap FLOAT
I...
February 1, 2010 at 10:09 am
Viewing 15 posts - 16 through 30 (of 55 total)