Forum Replies Created

Viewing 15 posts - 61 through 75 (of 118 total)

  • RE: Question of the Day for 16 Sep 2007

    can this issue be resolved?

    even if I have a red cross for the question, I strongly believe that I was right.

    Can this be explained in detail, and in case you...

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: SQL Server Agent

    Instead of using select * from sysprocesses where program_name like '%ref%', use if exists(select * from sysprocesses where program_name like '%SQLAgent%').........do something

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Complete Newbee Advice Required

    ..........as of accessing the Servers, use Microsoft SQL Server Management Studio.......you will be able to maintain frequently used scripts on your local system, which can be used all across the...

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Complete Newbee Advice Required

    First of all, if you have this option then plan it. We usually don't have this relaxation to migrate databases often. You will learn a lot, and people here at...

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Size and Name of all Databases

    Use the following script -

    USE master

    GO

    SELECT B.[Name] AS [Database Name (Logical)],

    A.[Name] AS [Physical Name],

    A.[filename] AS [File Path],

    A. AS [File Size]

    FROM sysaltfiles A

    INNER JOIN sys.databases B

    ON A.DBID=B.Database_ID

    --WHERE B.[Name]='PRACTICE'

    GO

    Note: You can use...

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Source control & change mgmt

    You can also check-out the following links -

    http://sql-server-version-control.qarchive.org/

    http://searchsqlserver.techtarget.com/tip/1,289483,sid87_gci1093178,00.html (nice one)

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Source control & change mgmt

    check out the following link -

    http://www.sqlservercentral.com/articles/Development/2743/

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: How do I know where .MDF / .LDF files are located?

    You can know the location of the database files as well as their size, which is needed for monitoring, using the following script -

    USE master

    GO

    SELECT B.[Name] AS [Database Name (Logical)],

    A.[Name]...

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Sql Server Profiler 2005

    Mohan is probably true.....stress brings in silly mistakes.....relax.....you know a lot and no one is going to kill you for a mistake....leave you seat and have a stroll every hour.....it...

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Source control & change mgmt

    For SQL Server, MS has come up with integrated source control in SQL Server 2008.......I think it is time to upgrade.....:)

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Does Anybody know what this Error is?

    Great Max....that was an exact answer.....thanks....it proved helpful for me....

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: select between left & right...

    You will not have any problem with prefix blanks, as the LEN function only trims the trailing blanks.....hope this helps

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: select between left & right...

    Use the following script -

    DECLARE @StringVARCHAR(255),

    @SearchStrVARCHAR(255)

    SET @String='The quick brown fox jumps over the lazy dog'

    SET @SearchStr='fox '+'////'

    SELECT SUBSTRING(@String,CHARINDEX(LEFT(@SearchStr,LEN(@SearchStr)-4),@String),LEN(@SearchStr)-4)

    Note: You can directly have the column name in place of the variable.

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: 64GB RAM on SQL 2005 Standard on W2K3 Enterprise

    Does a RAM of this magnitude help in performance improvement?

    Surely we don't need such a huge RAM to access memory locations, because the size of the storage devices and time...

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Database Sync

    If your intention is to setup a report database, I will strongly suggest the SQL Server Reporting Services....you will be overwhelmed by the features and things you are able to...

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

Viewing 15 posts - 61 through 75 (of 118 total)