Viewing 15 posts - 121 through 135 (of 1,539 total)
Temp tables are created in tempdb just like you create any other table in your user database. Only difference is it will be destroyed when u disconnect (Prefixed with #)...
November 18, 2010 at 1:05 am
phuong.nguyen-1008376 (11/17/2010)
Thank for response,But I don't know what is it deadlock on objects, therefore can't resolve it
Do you mean to say you do not understand deadlocks or do you mean...
November 18, 2010 at 1:02 am
protection from what? unauthorized access? you can use the password clause of the backup command.
You should take tape backups or copy backups to remote location so that your backup copy...
November 17, 2010 at 9:12 am
difficult to guess i think. You need to monitor bytes recieved/sec, bytes sent/sec from the counter SQL Server: Database Mirroring.
You can also monitor transaction delay.
November 17, 2010 at 9:10 am
mangoale (11/17/2010)
we are running crm which is slow to open and navigate to other tabs.
crm application us nsitting on another server and the server is doing fine.
sql server is...
November 17, 2010 at 8:25 am
jeelanik (11/17/2010)
I need to insert millions of rows from one production database to another database on the same production server. I wanted to accomplish this in the most efficient...
November 17, 2010 at 7:45 am
SQL Server will grab the amount of memory it requires but wont release it to OS unless OS asks for it. It will keep the memory with itself even when...
November 17, 2010 at 7:05 am
ekknaveen (11/17/2010)
In my application the below procedure is called which will update the next integer value in the table that is passed to it. The table contins only 3 records....
November 17, 2010 at 6:49 am
Duration is the total time spent by that SP/Query. Its measured in milliseconds.
November 17, 2010 at 5:13 am
Does your SP accepts parameters? If yes, pls modify the parameters to different sets of values and observe the time taken by it. is it same?
Profiler does nothing but...
November 17, 2010 at 2:46 am
Did you run the SP or did you run the T-SQL code which is part of SP?
If it is latter, I'll agree with Lowell's second point. It's highly likely due...
November 17, 2010 at 1:06 am
Users will not be impacted on principal server while setting up mirroring.
November 17, 2010 at 12:59 am
Creating an extra log file will be good if you suspect log might get full. However, it will depend on the table size/number of rows in it.
If you have a...
November 16, 2010 at 9:34 am
Thanks Wayne. It's advisable not to use profiler or client side trace on a loaded production box.
November 16, 2010 at 9:04 am
If you are modifying char(10) to char(64) then each row will expand by 54 characters. It depends on the number of rows your table is currently holding. does the 32...
November 16, 2010 at 8:55 am
Viewing 15 posts - 121 through 135 (of 1,539 total)