Viewing 15 posts - 721 through 735 (of 816 total)
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.
August 16, 2010 at 7:30 am
have you read about sp_adddumpdevices....have a look.
August 16, 2010 at 7:14 am
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...
August 16, 2010 at 4:58 am
then in that case if a employee having two joining date then you can filter those records in your where condition
August 16, 2010 at 4:55 am
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?
August 16, 2010 at 4:41 am
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?
August 16, 2010 at 4:26 am
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...
August 16, 2010 at 4:12 am
there is a utility tablediff which you can google.
It compare the mentioned tables and generate the difference between tables. Very helpfull in replication.
August 16, 2010 at 4:03 am
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...
August 16, 2010 at 3:32 am
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...
August 16, 2010 at 3:29 am
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...
August 16, 2010 at 3:04 am
what do you mean by generating an index?? whcih index and how they are getting aut generated? did you mean auto updated?
August 16, 2010 at 3:00 am
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
August 16, 2010 at 2:57 am
Sorry to hear, just suggestion, can you try to run repair for sql server?
August 13, 2010 at 2:34 pm
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...
August 13, 2010 at 12:14 pm
Viewing 15 posts - 721 through 735 (of 816 total)