Forum Replies Created

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

  • RE: SQL Server Job/Volunteer

    I agree with HTH, i know it could be challenging because DBA job is comparitively a higher rated job.

    Becuase you would be managing some company's customer data may be.

    So,...

  • RE: how to identify Memory bottleneck

    physical disk - reads/sec

    physical disk - writes/sec

    would you pls elaborate that how could physical disk counters like reads/Sec and Writes/Secs as you mentioned could help you analyse memory issue.

    To...

  • RE: update statistics on master and msdb

    Ideally, the statistics need to be updated or are updated :

    1. When you do alot of DMLs in your tables or indexed views.

    2. If the schema changes happen on your...

  • RE: how to identify Memory bottleneck

    There is no easy solution to it. you have to capture the perfmon data to get a clear picture of whether or not you have some memory bottleneck on your...

  • RE: Error in backup

    Helical Joan2 (5/12/2011)


    Hello, I am doing a backup, but it has error:

    DB_backup_20110512063314', SKIP, REWIND, NOUNLOAD, STATS = 10 " failed with the following error: "Cannot open backup device...

  • RE: Transaction Log file is full

    Sourav-657741 (5/8/2011)


    Database Shrink job doesn't run during the time of Rebuild Of the Indexes. The strategy is:

    1. First the Database Bkp job runs.

    2. Second the T-Log bkp job is kept...

  • RE: Converting Military Time to Standard time

    Marv2011 (5/6/2011)


    Yes, the field is a datetime field. 2009-07-15 17:30:00.000

    Try out this ..

    create table #temp_table

    ( a datetime)

    go

    insert into #temp_table (a) values (getdate())

    insert into #temp_table (a) values (getdate()+.10)

    insert into #temp_table (a)...

  • RE: QUERY TWO VIEWS

    laparicio (5/7/2011)


    I have two views that i need to get some info from

    I need a query that give the following results:

    item, description, qty, and the cost

    here is the vies:

    vPickDetails(customer_number,company_name,item_number,description,picked_quantity,creation_date)

    vInventoryCost(inventory_id,quantity,item_number,description,cost)

    will...

  • RE: execute trigger problem

    Pl. post your question appropriately and as lowell mentioned share the trigger code with us to get a better help on your issue.

    Regards,

    Sachin

  • RE: USER CONNECTION

    Rajesh kasturi (4/24/2009)


    As manoj said, query is more efficiant than sp_who or sp_who2

    select spid, status, loginame, hostname, blocked, db_name(dbid), cmd from master..sysprocesses where db_name(dbid) = 'yourdb'

    Sorry but i contradict on...

  • RE: USER CONNECTION

    matthew.peters (5/8/2011)


    Hello

    I have been monitoring the following counter SQLServer: General Statistics\User Connections through performance monitor but the user connection count is lower than the number of rows returned by sysprocesses,...

  • RE: select permission to public

    Sorry . but this is not a SQL SERVER 2000 Forums and with no wrong intentions. I myself know the security loop holes in sql server 2000 .

    I provided...

  • RE: select permission to public

    matthew.lowe 19651 (5/5/2011)


    Hi,

    Surely if you can extract the SA Hash from the syslogins table and then crack it , this is a security hole.

    not being pedantic , just an overthought

    Matt

    Just...

  • RE: select permission to public

    matthew.lowe 19651 (5/5/2011)


    So is :-

    select * from syslogins

    Not an issue then?

    As i mentioned earlier even if you have select permisions on the system views which by default a public...

  • RE: The Synchronous Mirroring on sql server 2k8 is giving error:w00t:

    forsqlserver (5/5/2011)


    Thanks...

    But I want to just confirm that will Mirroring be OK or Not?

    How Do I check this? If I create database snapshot of Mirror datasbase but I dont...

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