Viewing 15 posts - 31 through 45 (of 360 total)
A more thorough description of the problem you are trying to solve might get you more precise help.
July 13, 2011 at 1:00 pm
Lowell!
DDL trigger. log it to a table.
Cheers!
July 13, 2011 at 12:57 pm
it can't be done in the GUI but SQL Server supports it
exec sp_addrolemember 'mygroup','groupToAddToMyGroup';
There are advantages to using roles, because sometimes you need to add multiple existing AD groups into...
July 13, 2011 at 12:56 pm
Pretty sure you need to stick with full recovery for mirroring, Seth.
You also don't need to set the recovery model to simple for using dbcc shrinkfile.
In your script below you...
July 13, 2011 at 12:39 pm
Performance could be less than expected, 8GB isn't a lot of memory for a SQL Server.
SQL Server uses ~512MB of OS memory is for each SQL instance on a typical...
July 13, 2011 at 9:17 am
select * from msdb..sysjobs
will tell you the last time the job was modified.
If it was truly enabled (from a disabled state) the date it was enabled will be stored here.
You...
July 13, 2011 at 8:55 am
It may be nothing at all...
Try getting your average time by dividing the
total_worker_time / (execution_count *1.0)
I multiply by 1.0 to implicit cast to a float so you get more...
July 12, 2011 at 12:16 pm
I'll provide the rough syntax for selecting out the information you want and leave it to you to pick up the pieces. I don't know if it will run...
July 12, 2011 at 11:27 am
I think you need to pull apart the company information and the import information into 2 different tables.
you would then link the campaign to the company and the import.
anyway, you...
July 12, 2011 at 10:10 am
id is a surrogate key, not a natural key.
the natural key is the one (or more) columns that make a row unique.
a surrogate key is a unique idenifier appended to...
July 12, 2011 at 8:49 am
Tell me what your natural key is for the prospects table. Is it just company?
July 12, 2011 at 8:29 am
you can use a CTE with the row_number() function to identify the ID of oneof the duplicate records and join that CTE with whatever you want to do the updates...
July 12, 2011 at 6:54 am
Lee Sloan (6/3/2011)
... what I'm effectively asking for is suggestions of how we significantly improve this, rather than band-aid it.
I think it comes down to management recognizing issues within their...
June 6, 2011 at 7:35 am
Jeff Torres (6/3/2011)
I have enjoyed reading the articles you submitted. I have read all four of the articles you posted on SSC and I would like to encourage you to...
June 3, 2011 at 8:17 am
This is a very well thought out article and well-written.
But I'm with stevemash here. You don't address locking at all in your article which is a big issue for...
March 24, 2011 at 5:44 am
Viewing 15 posts - 31 through 45 (of 360 total)