Viewing 15 posts - 541 through 555 (of 814 total)
aatishpatel (6/27/2011)
I would change the database recovery to simple or bulk logged.
I would not do that unless you have a good reason and understand the tradeoffs; it's not going to...
June 27, 2011 at 3:29 pm
Zapper (6/22/2011)
I was also told that if the DBs were moved back to local disk, we would see a huge decrease in performance, which I'm also not buying.
Any comments...
June 24, 2011 at 9:46 am
Greg Roberts-134214 (6/23/2011)
Thanks for all of the feedback everyone.All of the files are on there own LUNs.
Ask the SAN guys to map the LUNS down to individual spindles; and for...
June 24, 2011 at 9:40 am
Get SQL Server Express with Advanced Services; practice SQL admin tasks. Back up, restore, apply service patches, do index maintenance. Build stored procedures to do those things. ...
June 24, 2011 at 9:33 am
Puneet Malhotra-314029 (6/23/2011)
June 23, 2011 at 10:19 am
manoj2001 (6/20/2011)
so in all we can say it is impossible to recover lost password?
No; not at all impossible. How fast you can do so depends on:
A) Whether you can...
June 21, 2011 at 7:58 am
If it was a poor or a short password, you can brute force or dictionary attack it.
Otherwise, Elcomsoft has software to adjust the Master database directly and replace it with...
June 20, 2011 at 10:25 am
Charles Kincaid (6/20/2011)
June 20, 2011 at 10:19 am
Agreed, Microsoft patching is nowhere close to what a true 24x7 mission critical OS should be. Requiring reboots is ridiculous (Novell Netware didn't, even for kernel patches, much less...
June 20, 2011 at 8:21 am
To be able use bcp to generate text files from within SQL code/stored procedure, such as for reporting (or even logging).
Also, to execute administrative batch files such as drive maintenance...
June 17, 2011 at 3:48 pm
Raghavender (6/11/2011)
I came to know that PostGreSQL is a RDBMS. can any one of you came accross of this technology ? how will be the future if we work...
June 17, 2011 at 3:18 pm
GSquared (6/3/2011)
For example, "LIKE '[0-9]'" will check for any single numeric character.
As an option if you're going to work with a LIKE in the first place,
LIKE [0-1][0-9][/-][0-3][0-9]
and so on and...
June 3, 2011 at 4:15 pm
May I suggest as an optimization fewer but more complex UPDATE statements, to reduce the amount of I/O?
As a very rough example, the first two statement could collapse to:
Update dbo.Table1
Set...
June 1, 2011 at 8:29 am
Personally, I'd say you should always check important calculations in some "by hand" way; just because you think you programmed the software right, doesn't mean the results come out.
Special rounding...
May 31, 2011 at 10:12 am
1) Index usage DMV's are emptied when SQL Server is restarted http://msdn.microsoft.com/en-us/library/ms188755.aspx
2) When properly, precisely done checksums (all columns fixed width or very, very careful delimiting (CHAR(31), perhaps), COALESCE/ISNULLed to...
May 24, 2011 at 8:18 am
Viewing 15 posts - 541 through 555 (of 814 total)