Viewing 15 posts - 6,286 through 6,300 (of 7,501 total)
First I would start looking in the Windows event log searching for IO-errors (cards or disks) if you can perform a checkdisk,..
Then check if there are memory errors.
Then perform dbcc...
May 2, 2006 at 1:38 pm
indeed F1 just brings up BOL,
shift-F1 brings up BOL and positiones to the selected statement in possible.
e.g. create index x on mytable (y)
when you select "create index" and then...
May 2, 2006 at 1:39 am
Books Online is a valuable resource. It contains the help for SQL and SQLServer ![]()
From Query Analyser, you can access it pressing Shift +...
April 27, 2006 at 11:54 pm
how about
select substring(account_number,1,2) as Acc_prefix, count(*) as Counter
from your_accounting_table
group by substring(account_number,1,2)
order by Acc_prefix
April 27, 2006 at 1:59 pm
Yelena's method is straight forward and manageble. ![]()
Just keep in mind you'll have to rebind the views when altering database object in your base-db.
I'd...
April 24, 2006 at 1:16 am
- collect sqlserver version info.
- use sp_helpdb to get a first impression of the db-settings that are in use.
- perform sp_updatestats / dbcc updateusage for all db that use "autoupdate...
April 24, 2006 at 12:50 am
do all tables have a clustering index ?
I guess not. So for this maintenance time, you may want to create one (for each table ! ). If you just pick...
April 24, 2006 at 12:35 am
Check out : http://www.sqlservercentral.com/columnists/chedgate/fragmentation101.asp
search SSC for "fragmentation"
April 24, 2006 at 12:23 am
It was the featured article in the daily newsletter of 2006/04/21.
That's why I tought I just might add a path towards sql2005 ![]()
Anyway, nice...
April 24, 2006 at 12:01 am
looking good overhere.
Only thing is to plan the reboot ! (who wouldn't )
It is a "strange" thing that it does not recognize it's own need for reboot (sql native client...
April 21, 2006 at 10:15 am
I'm not that much into reporting server, but you can also have this solved in your select query
SELECT CONVERT(char(11), MAX(src_date)) AS LatestMonth
, CONVERT(char(11), dateadd(mm,-1, MAX(src_date)))...
April 21, 2006 at 2:01 am
converting to soon.
SELECT CONVERT(char(11), MAX(src_date)) AS LatestMonth
FROM tbl_src_date
![]()
April 21, 2006 at 1:09 am
FYI
in SQL2005 you have DMV's (e.g. sys.dm_os_memory_clerks) to followup this kind of info.
e.g. clr-info : http://blogs.msdn.com/sqlclr/archive/2006/03/24/560154.aspx
![]()
April 21, 2006 at 1:02 am
-- this one works on SQL7 and SQL2000
You may have to run this script a number of times, because of the reasons I mentioned in previous the post.
-- Shrink_TrxLog.SQL
--INF: How to...
April 21, 2006 at 12:00 am
thanks for the feedback. ![]()
April 20, 2006 at 7:44 am
Viewing 15 posts - 6,286 through 6,300 (of 7,501 total)