Viewing 15 posts - 7,096 through 7,110 (of 7,187 total)
David
Never give a user db_owner access - not if it's your job on the line when it goes wrong.
First, I would question why an application user needs to create...
May 25, 2006 at 3:23 am
Anyone who doesn't need it. And I would think that includes everybody except DBAs and developers.
John
May 24, 2006 at 9:58 am
Daniela
You can use the following T-SQL to generate the T-SQL to disconnect the logins. Or, if you want to do it all in one batch, you can use a cursor.
John
create...
May 24, 2006 at 8:32 am
Tony
How about:
select colname where colname <> dbo.uf_stripnonalpha(colname)
from table
John
May 24, 2006 at 3:32 am
That would be easier. But bear in mind that any indexes you have on colname would not be used.
John
May 24, 2006 at 2:59 am
Tony
How about creating a view (indexed if necessary) that shows the name column with all non-alphabetic characters stripped from the end? Then you can do a select distinct against the view.
John
May 24, 2006 at 2:36 am
I would guess that, since the task starts but appears to abort in the middle, the process is either running out of disk space resource somewhere or being interrupted by...
May 23, 2006 at 8:57 am
Grant
I would consider the following:
(1) Set OutputVerboseLevel=0, unless you need to do any debugging. The default is 2 and this is probably wasting resources logging error messages and progress reports.
(2)...
May 23, 2006 at 7:12 am
Have you tried deleting the article that corresponds to the table with the new column and recreating it? After that you will probably need to repeat steps 2 and 3...
May 23, 2006 at 6:12 am
Steve
The temp table (if prefixed by # rather than ##) is only visible to the connection that created it and is dropped when that connection ends. If you run the...
May 23, 2006 at 5:04 am
Fintan
Not sure what you're asking here. If you're wondering how to save the results of a query to an Excel spreadsheet, then what I would do is create a view...
May 23, 2006 at 4:29 am
Graeme
I see. In that case I would get all users off before the daily update, then create the new subscription after the update.
John
May 22, 2006 at 8:24 am
Norry
When I say "on trust", I mean that Microsoft just trusts you to enter the right information in the licensing box.
I think I'm right in saying that if you want...
May 22, 2006 at 8:20 am
Graeme
Yes, that option is disabled on my publication as well. Don't know whether that's because you can only enable that when you create the publication.
Have you tried restoring the database...
May 22, 2006 at 8:06 am
Viewing 15 posts - 7,096 through 7,110 (of 7,187 total)