Viewing 15 posts - 271 through 285 (of 2,436 total)
What type of hardware are you running ? What type of SAN are you running ?
There are a few combinations that are prone to this.
June 9, 2009 at 10:32 am
Yes - this is possible.
You will need to install the 'Log Parser' from MS - it's free.
June 4, 2009 at 9:18 am
oh the following:
@cmd='"' +
is single quote double quote single quite
and
'"'
is also is single quote double quote single quite
It's kind of hard to see on the post
June 3, 2009 at 11:30 am
and yet another way ... using some good old fashioned DOS within SQL:
declare@cmdvarchar(1024)
select @cmd='"' +
'F:' + '&&' +--> drive letter to go to
'cd RMI' + '&&' +
'set path=c:\jdk1.6.0_10\bin' + '&&'...
June 3, 2009 at 11:28 am
Finally in print - Thanks Steve - ISO9001 ! (did my first one over 15 years ago)
If you have ISO9001 then SOX is kind of dumb (although Jeff has lots...
June 1, 2009 at 9:26 am
As DBAs we act as the 'stewards' of data - we are not the owners of the data.
However it is our collective responsibility to document concerns such as this and...
May 28, 2009 at 11:52 am
Lots of good stuff here. Pass-phrases really work well. They are virtually uncrackable.
Capitalization and letter/number substitution are cool as well when you mix in case sensitivity.
Personally, use 16 character...
May 21, 2009 at 9:49 am
please add me to the 'interested luist' as well 😀
May 19, 2009 at 8:43 am
after listening to that type of fix I think that it may be time to begin the search for a new application vendor ...
May 15, 2009 at 8:14 am
Here are a couple of backup options ...
- LiteSpeed
- Striping - http://www.sqlservercentral.com/Forums/Topic704434-357-1.aspx
May 15, 2009 at 7:40 am
Updates Statistics yup ... don't forget sp_recompile as well !
Just because you have good statistics does not mean the optimizer will use them ...
You have to 'force' plan recompilations !
May 14, 2009 at 2:25 pm
performance mainly - due to bad statistics and index fragmentation are concerns.
Additionally, dependent on the characteristics of the system, having a window large enough to perform 'Update Statistics' and 'Index...
May 14, 2009 at 11:07 am
If you are executing SSMS from a location other than the SQL Server itself, check the client software versions on the server and the location you are executing SSMS from.
If...
May 14, 2009 at 9:51 am
I have not reached 50 billion row mark yet. However we have numerous (between 50-100)databases with tables that range in row counts in the 100's of millions to just shy...
May 14, 2009 at 9:46 am
To add to Jack's information - do not defragment or reindex tables less than 64k pages (one extent). Since they are stored on mixed extents it does nothing. Remember SQL...
May 13, 2009 at 10:30 am
Viewing 15 posts - 271 through 285 (of 2,436 total)