Viewing 15 posts - 1 through 15 (of 16 total)
Hi,
I have same problem with 2008 R2. Have you found a other soltion than remove and add again the user
February 14, 2011 at 4:41 am
I have modified the script for removing and for improving the compatibility.....
USE [master]
GO
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO
/**
********* 03/26/2008 - Luke Campbell - uspIndexMaintenance.
This procedure reorganizes any indexes (NON XML)...
February 9, 2009 at 4:08 am
have you a parameter for the compression level with 'litespeed'? And is it compatible with sql server 2008 ?
Thanks
October 4, 2008 at 4:02 am
Excellent you are a real guru.......
November 15, 2007 at 11:29 pm
Some info
IF PERMISSIONS()&2=2
CREATE TABLE test_table (col1 INT)
ELSE
PRINT 'ERROR: The current user cannot create a table.'
--------
This example determines whether the current user can
grant the...
November 15, 2007 at 7:57 am
Thank a lot for your response. Sometimes, I have some users who are in several groups in the Active directory ....
With this mothode I see only main group
Thank...
November 15, 2007 at 6:12 am
I was the solution,
select * from sysobjects where (OBJECTPROPERTY(id, N'ExecIsStartup') = 1)
Thank a lot ........
February 7, 2006 at 12:12 am
It seems easy, but it is not case on my database. Perhaps I do a bad manipulation somewhere. I create a user by the enterprise manager and...
November 6, 2003 at 12:15 pm
in the hotfix 1078, MS change 'xp_log70.dll.' to xpsql70.dll'
also the solution :
exec sp_dropextendedproc 'xp_cmdshell'
exec sp_addextendedproc 'xp_cmdshell','xpsql70.dll'
exec xp_cmdshell 'dir *.exe'
and it worked OK.
If you have a explain for that ......It...
February 5, 2003 at 7:46 am
I tried as login Sa but I have the same error message
Server: Msg 2812, Level 16, State 62, Line 1
Could not find stored procedure 'xp_cmdshell'.
Also, I saw...
February 4, 2003 at 11:27 am
I tried as login Sa but I have the same error message
Server: Msg 2812, Level 16, State 62, Line 1
Could not find stored procedure 'xp_cmdshell'.
February 4, 2003 at 10:16 am
How to change the default owner? For example, I would change for user “tata” with owner bruprod by default. In fact, when the user makes a query,...
December 9, 2002 at 10:35 am
in our sql 7 sp2
connect with:"bruprod"
select *
from catTitles
ok
in our sql 7 sp4(other server)
connect with: "bruprod"
select *
from catTitles
not work "Invalid object"
but
select *
from bruprod.catTitles
ok ?
I do...
December 9, 2002 at 10:11 am
example:
Work sql 7 sp 2 but not sp4.
Setuser ‘bruprod’
Go
Sp_recompine ‘CatTitles’
Go
December 9, 2002 at 10:03 am
Viewing 15 posts - 1 through 15 (of 16 total)