Forum Replies Created

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

  • RE: SQL SERVER 2008 Management studio doesnot show tables with SQL 2005 database

    I can give view Definition permissions but my question is:

    Are these permissions are not enough to view objects ?

    USE [ABCDEV]

    GO

    CREATE ROLE [abc_usr_rl] AUTHORIZATION [dbo]

    GO

    GRANT DELETE ON SCHEMA::[abc] TO [abc_usr_rl]

    GO

    GRANT EXECUTE...

  • RE: Database file move

    thanks for your quick reply. But I am wondering that whether the OLD disk have some configurations attached with SQL SERVER ENgine. IS there any better plan this mine one...

  • RE: How to disable SQL Server Agent jobs using single script?

    Hey guys,

    I also have same problem.This is regarding sql 2005 std ed.

    I want to disable all sqlserver agent jobs with checking the status. If job is running, the script will...

  • RE: SQL SERVER 2005 Clustering DISK SPACE

    thanks for your kind suggestions.

    AKP

  • RE: SQL SERVER 2005 Clustering DISK SPACE

    Give me more details about the precaustions.

  • RE: Displaying all installed instances in a server

    Actually I need to generate a report about All server names, All Dbs, IP address, All Instances and other server related informations. SO I need some scripting idea from where...

  • RE: Primary Key

    TO make sure the Normalization rule, there must be primary key in a table. If there is no PK then how can you stop data redundancy in a table. PK...

  • RE: About worktable

    Actually, other guy wrote those views, but I am working as query optimizer. Thanks for your kind suggestions.

     I remove that and try, it works faster with same output .

     

    THanks

     

    AKP

     

  • RE: About worktable

    This is the result of SET STATISTICS IO ON

    (12 row(s) affected)

    Table 'areas'. Scan count 275, logical reads 560, physical reads 0, read-ahead reads 0.

    Table 'Worktable'. Scan count 384307, logical reads...

  • RE: About worktable

    view v_rpt:

    SELECT     dbo.r_boffice.r_path, dbo.r_boffice.d_id, dbo.r_boffice.r_date, dbo.r_boffice.r_type_id,

                          dbo.l_r_boffice.r_name, dbo.r_boffice.r_id, dbo.l_r_boffice.r_title, dbo.l_r_boffice.display,

                          dbo.l_r_boffice.l_id, dbo.l_r_boffice.c_id, dbo.div.ex_id, CONVERT(varchar(32),

                          dbo.r_boffice.r_date, 1) AS rp_date_display, dbo.r_boffice.r_time,

                          dbo.v_div_All.Div_Dep AS div, dbo.areas.a_id, dbo.areas.reg_id,

                         ...

  • RE: How to find usused indexes in any database ?

    We need to take full workload to use SQL profiler. If we need to do in production database, it will be problemmatic. If there is any script which can find the...

  • RE: about covering indexes

    When I create a index including all columns of where clause, it shows bookmark Lookups with index seek. But this also becomes costly for query execution. What can I do...

  • RE: Are these two Same ?

    Can you give me some samples, how can i use for these above queries ?

    Thanks

    AKP

  • RE: Differences in these two operators

    Thats true but w_id is primary key, is there any possibilities of getting more than one row.

    Thanks.

    AKP

  • RE: slow running Query

    Fields "ob_t_id ,s_id and comp" are in obj table which is a biggest table in our database.

    Actually can you tell me how can i replace <> with other saragable operators.

    Send...

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