Viewing 15 posts - 856 through 870 (of 1,048 total)
what error are you seeing in the SQL Server Log? What happens if you add the users directly, or add them to a domain group (Vs. a local group?)...
July 1, 2010 at 12:58 pm
Good point Steve, I should have mentioned that as well. If your goal is to minimize the size of the transaction log then pausing long enough between iterations to allow...
July 1, 2010 at 12:44 pm
sounds like a policy management alert. Some configuration of your server has changed that is not conforming to a policy that was set up.
July 1, 2010 at 12:29 pm
for limiting rows you have two options. If the IDs to be deleted are pretty well grouped together and mostly contiguous you can divide up the deletes by ID ranges....
July 1, 2010 at 11:30 am
With the clustered index on ID I would propose the following:
select into a temp table the IDs that qualify for being deleted (use NOLOCK if you can)
delete from the main...
July 1, 2010 at 11:04 am
see if you can access the cached version of some pages with a google search for your business or old web site. you may get luck and be able to...
May 25, 2010 at 12:42 pm
are you replicating between databases on the same server or to another server?
May 11, 2010 at 8:45 am
People have accused me of being certified. I would merely claim to be certifiable.
May 6, 2010 at 9:26 am
Thanks for providing additional info. I do not have time at the moment to spend more than a minute or two to look at it but I will get to...
April 30, 2010 at 8:41 am
This looks overly complex to me, but I don;t have sufficient information to explain why or how to design it more efficiently.
I would suggest that you break this query up...
April 30, 2010 at 7:12 am
Students that need to loose weight should have a NULL lunch period.
April 28, 2010 at 1:58 pm
Then there are two other options:
1) check for null and use a 3 value insert statement if it is null, else insert 4 values.
2) select the column default value into...
April 28, 2010 at 9:36 am
In order for the column default to be used you would have to use an insert statement that omitted that column.
Since you know the default (is 4) you could do...
April 28, 2010 at 9:19 am
Then EXCEPT or LEFT OUTER JOIN is what you want.
April 20, 2010 at 9:17 am
Viewing 15 posts - 856 through 870 (of 1,048 total)