Forum Replies Created

Viewing 15 posts - 721 through 735 (of 816 total)

  • RE: Showing Dependancies for Views

    configure profiler with appropriate filter and then run it in background while doing your activity on your application.

    you will get the view names in profiler.

  • RE: not able to take backupin a differnet setup in LAN

    have you read about sp_adddumpdevices....have a look.

  • RE: General Network Error

    seems like the query you running having lots of record. Can you try running your query first with top 100 or .. and then see the execution plan to check...

  • RE: need help

    then in that case if a employee having two joining date then you can filter those records in your where condition

  • RE: need help

    but in that case there will be new empid for him/her. and then everything from fresh. Thats what I am assuming. Is that not the case?

  • RE: How to view merge replication error

    you might already checked the history tab in replication monitor, are you not getting anythere there? Is it quiet long period since when your data is out of sync?

  • RE: SQL JOB ERROR

    if you have any tool for performance analysis then you can browse history to see what type of lock was there and other related problems. Else might find something in...

  • RE: How to view merge replication error

    there is a utility tablediff which you can google.

    It compare the mentioned tables and generate the difference between tables. Very helpfull in replication.

  • RE: need help

    is there any fix period for the gap for any employee..

    like an employee can have max 22 days of leave in year or something like with other holidays/leave.

    you can put...

  • RE: stopping index generation

    as you doing on t-sql, the same you can do by SSMS.

    expand your table, expand indexes and then right click on the index which you want to disable and then...

  • RE: Query help

    then i think its already answered here..

    http://www.sqlservercentral.com/Forums/Topic969573-338-1.aspx.

    you should first search the site for your problem and if not able to see answer then only post your question...

  • RE: stopping index generation

    what do you mean by generating an index?? whcih index and how they are getting aut generated? did you mean auto updated?

  • RE: Query help

    if table not already created then

    select ccode, substring(vcode,1,1) into mytable from youroriginaltable

    if you already created your destination table(mytable) then do insert into instead of select .. into..

    hope it helps

  • RE: SQL 2008 SP1 Install

    Sorry to hear, just suggestion, can you try to run repair for sql server?

  • RE: "Quick" way to Select multiple fields in Management Studio?

    why not suggest to run sp_help tablename and then you will get all details for that table including individual column name. then you can select required columns and copy paste...

Viewing 15 posts - 721 through 735 (of 816 total)