Forum Replies Created

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

  • Reply To: Need Help

    Thanks it worked for me

     

    Thanks once again

  • Reply To: Index Backup

    Thanks just want to make sure what if index is created in a file group can we restore that only?

  • Reply To: Migration

    Thanks I will check all the option you mentioned

  • Reply To: Memory

    Thanks it got clear

  • RE: Full Recovery DB

    goher2000 - Thursday, March 28, 2019 12:42 PM

    -- details of last backup (for all databases) performed (full ,diff & log)
    USE [Master];
    GO

    DECLARE @FileSpace...

  • RE: Full Recovery DB

    goher2000 - Thursday, March 28, 2019 12:05 PM

    there are many ways to do that, here are some of them

    1) you can use...

  • RE: Distinct

    My requirement to keep track of how many logins we have in total in entire server, so I want to get any distinct Login name with othew column.

  • RE: Distinct

    basically I am trying to get only one Login for each person not matter how many host or CMD he has connected

  • RE: Distinct

    I am not getting Distinct Loginame with the solution you provided.

  • RE: Query

    THis is also including Log space as well, can we just get the sum of data file only?? and Log as seperate

  • RE: For Multiple DB

    sgmunson - Wednesday, March 14, 2018 1:52 PM

    Nita Reddy - Wednesday, March 14, 2018 1:28 PM

    March 14, 2018 at 2:54 pm

    #1983306

  • RE: For Multiple DB

    sgmunson - Wednesday, March 14, 2018 12:48 PM

    Might want to try it this way:
    DECLARE @command AS varchar(2000) = '
    USE ?

    PRINT ''--=========================================================================='';
    PRINT ''USE...

  • RE: For Multiple DB

    sgmunson - Wednesday, March 14, 2018 12:48 PM

    Might want to try it this way:
    DECLARE @command AS varchar(2000) = '
    USE ?

    PRINT ''--=========================================================================='';
    PRINT ''USE...

  • RE: For Multiple DB

    This is the code is working for Single Database, I want this for Multiple DB

    DECLARE
      @note VARCHAR(2048)
      ,@id INT
        ,@command varchar(2000)

    DECLARE...

  • RE: For Multiple DB

    DECLARE 
    @note VARCHAR(2000)
    ,@id INT 
    ,@command varchar (2000)

    DECLARE C_sql CURSOR FOR

    SELECT '' AS [-- Notes --],
    2 AS [-- print output --]

    UNION
    SELECT '--...

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