Viewing 15 posts - 27,151 through 27,165 (of 39,793 total)
Most people I know don't really like VSS. SourceGear, SVN, PVCS, etc, are better systems.
If you need to use SourceSafe, I'd start here: http://msdn.microsoft.com/en-us/library/bb509342(VS.80).aspx
September 9, 2008 at 9:21 pm
Read Books Online for information on this
http://m.podshow.com/media/15351/episodes/125321/sqlservercentral-125321-09-09-2008.mp4
September 9, 2008 at 9:20 pm
If you restored without using the NORECOVERY option, there's nothing you can do. You brought the database out of standby and log shipping can't restart. I'd delete it and run...
September 9, 2008 at 9:19 pm
yes, principals and mirrors are database level, not server level.
September 9, 2008 at 9:16 pm
In SQL Server 2005, you can set a password policy for SQL accounts if you are on Windows 2003 or later.
If you are running SQL 2000, there isn't any way...
September 9, 2008 at 9:15 pm
If you can't trace this procedure down, you probably need to get some basic training.
The procedure just simply runs through a set of IF THEN logic and executes statements. If...
September 9, 2008 at 9:13 pm
You would want to do a GROUP BY and COUNT to aggregate up the rows.
select fieldA, fieldB, count(fieldb)
from table
group by fieldA, fieldB
September 9, 2008 at 9:09 pm
I hesitate to give developers even DBO access for a simple reason. They don't necessarily keep track of things and they tend to make changes, try things, etc. without documenting...
September 9, 2008 at 4:41 pm
Do you want to delete matching NULLs? Use an OR clause -OR (a is null and b is null)
September 9, 2008 at 8:37 am
A separate array helps, but only during backups. You don't have heads moving for two separate processes. Not sure how noticeable it would be.
However it's a bad idea. If the...
September 9, 2008 at 8:36 am
That's what I would think. Some process outside touching the files.
September 9, 2008 at 8:32 am
James,
Didn't realize that and good information to have. It's good to know since it might mean that you can your vacation back if you have to work.
I have turned my...
September 9, 2008 at 8:30 am
Not sure what you mean by "how it process". You can get the execution plan, which will tell you what work is being done. Queries can be processed different ways,...
September 9, 2008 at 8:25 am
Viewing 15 posts - 27,151 through 27,165 (of 39,793 total)