Forum Replies Created

Viewing 15 posts - 91 through 105 (of 220 total)

  • RE: Alert Database creation

    You can create an SP using xp_sendmail .Finally create a job that executes daily before you come to office and send you the mail .In xp_sendmail you can use the...

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: Is this possible?

    Your very welocme ....

    I left the SQL Server team in Microsoft (Bangalore) last month and joining IBM now ..

    Regards:-)

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: Is this possible?

    Yes its possible :

    1) install SQL Server 2008

    2) open the management studio

    3) in the toolbar go to view >> select Registered servers

    4) in the database Engine section you will...

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: "Use" command

    by default for every new connection the master database is opened and then we use "USE " to go to a particular database .

    The other way could be to change...

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: User Database Backups - Individual Backup Jobs or Single Backup Job?

    Would like to add 2 cents here .

    If you execute them serially in one job ,it will take more time .

    You need to calculate that time and if its acceptable...

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: Enable snapshot isolation

    1) If only the readonly SPIDs are getting blocked then it will do wonders for you .

    2) if you have a bit of write as well , still it will...

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: Data coversion from nvarchar to int possible??

    You cannot do it directly .You need to convert it to varbinary first .

    begin

    declare @num nvarchar

    set @num = 'hello'

    select cast (cast(@num as varbinary)as int)

    end

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: How to change a number field into a text?

    Hope this example helps as you have asked a general question and not given any other information :

    begin

    declare @num int

    set @num = 22

    select cast( @num as char)

    end

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: Cluter Instance fail overed???

    1.Is the SQL Server insatnce restart every time we move the groups from one node to other? Because I'm seeing in the error log that the sql server instance has...

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: Is this possible?

    Linked server will not serve that purpose my friend .

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: i want to get database name,database owner and database size in a single query(insted of sp_helpdb)

    sorry , you can also create a temp table #test

    Regards

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: i want to get database name,database owner and database size in a single query(insted of sp_helpdb)

    1)

    create table test

    ([name] sysname,db_size nvarchar(13),

    [owner] sysname null,[dbid] smallint,

    created nvarchar(11),[status] nvarchar(600),

    compatibility tinyint)

    2)

    insert into test exec sp_helpdb

    3)

    select name ,db_size,owner from test

    HTH

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: Transfer data

    SQL Server works on the principle of proportional fill .The data will go in all the 3 files in such a way that all the files get filled at the...

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: AWE on A/A cluster

    Ian is correct .

    The reason behind it is :

    When you make any changes in sp_configure , the updates are recorded in sys.configurations view (actual table is in mssqlresource which you...

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

  • RE: SQL Server 2008 instance name alias

    You got the answer .Aliases are always created on the client machines .

    On the localhost you have both clients and server .

    Regards

    Abhay Chaudhary
    Sr.DBA (MCITP/MCTS :SQL Server 2005/2008 ,OCP 9i)

Viewing 15 posts - 91 through 105 (of 220 total)