Viewing 15 posts - 6,271 through 6,285 (of 7,489 total)
I like the article and the example.
I've tried to install it on my local sql2005STD instance wich has clr enabled and my testdb is trustworthy.
The vb.net version as well as...
May 3, 2006 at 5:07 am
about the same goes for "Spotlight on SQLServer" from Quest software.
May 3, 2006 at 5:00 am
First of all, you query is to heavy !
You use 3 objects and only join two of them, leaving the 3-th one for crossjoining ???
May 3, 2006 at 12:03 am
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
Viewing 15 posts - 6,271 through 6,285 (of 7,489 total)