Forum Replies Created

Viewing 15 posts - 16 through 30 (of 39 total)

  • RE: The specified schema name "dbo" either does not exist or

    The GRANT statement should be as follows;

    GRANT EXECUTE ON TO db_execute

  • RE: Drop Login

    sys.sysusers

  • RE: Drop Login

    sys.syslogins

  • RE: The specified schema name "dbo" either does not exist or

    If you use the script under the correct DB it should return all the sps which do not have EXECUTE permission.

    If you know the trouble making sp, use the...

  • RE: Find stored procedures giving errors

    Not necessarily. Once you get the error, your application will stop at that point thus you can refer the profiler output to see that last entry. (assuming unwanted entries will...

  • RE: Find stored procedures giving errors

    Your correct. You can use the profiler for this case. Catch the below events and columns.

    Events

    RPC: Completed

    SQL: Batch Complete

    Columns

    TextData

    Any other columns would you think is necessary.

    Apply some filters so that...

  • RE: The specified schema name "dbo" either does not exist or

    Make following things;

    1.The particular users are belongs to the db_execute role.

    2.The sprocs are given the EXECUTE permission for db_execute role. You can use the below script to see list of...

  • RE: Update trigger help.

    Lets assume if you want to check whether any of the columns 2,3,4 or all the columns have been updated or not. Then use the following IF condition

    IF (COLUMNS_UPDATED() &...

  • RE: Sql Server remote connections error

    If the SQL BROWSER service is started you can connect to the server by refering server name and the instance name. Otherwise you have to specify the port#.

    In this case,...

  • RE: Update trigger help.

    Hope this will helpful for you to find a better solution.

    Use COLUMNS_UPDATED() to check whether perticular column has updated or not.

    You can use ‘deleted’ virtual table to capture old...

  • RE: Dependencies,Please help

    In case if your using SQL Server 2005, use sys.sql_dependencies.

    Remember, there are some situations you will not find dependies recorded in the system view. Specially when you rename an...

  • RE: Performance tuning

    This is a more generic question.

    You need to make sure every db portion that pushes to production will be performed as intended. This is where the performance tuning comes into...

  • RE: Login failures after 2005 upgrade

    What is the version of your master database? I mean, is it the same database that you use in SQL Server 2000? Because all your earlier logins are stored in...

  • RE: Query Access from SQL2005, 64-BIT

    You can use SQL Server Integration Services also to read access data.

  • RE: Adding Filegroup via TSQL

    ALTER DATABASE JeanAnnTest

    ADD FILEGROUP JA_FG;

    ALTER DATABASE JeanAnnTest

    ADD FILE

    (

    NAME = JeanAnn2,

    FILENAME = 'c:\MSSQL\JeanAnnTestNewFilegroup777.ndf',

    SIZE = 6MB,

    MAXSIZE = 18MB,

    FILEGROWTH = 1

    )

    TO FILEGROUP JA_FG;

Viewing 15 posts - 16 through 30 (of 39 total)