Viewing 15 posts - 1,351 through 1,365 (of 1,995 total)
An interesting article, but there seems to be one aspect that has not been covered.
The article suggests that there is a slight overhead using a surrogate key (as an extra...
October 25, 2010 at 3:39 am
if the initial query took 3 hours to populate 1 screen then i imagine the database developers need shooting.
i just can't conceive that there were not other solutions that did...
July 14, 2010 at 1:53 am
i can see this on every dev machine in our office as well.... how odd.
i think sql 2008 must be using the figure in "initial size" to recreate tempdb back...
April 28, 2010 at 9:03 am
further update
if you right click on any database except tempdb
then choose properties
then choose file
then the column "initial size" will tell you the current database size
but with tempdb...
April 28, 2010 at 8:24 am
update on the situation
after analysing the pattern of behaviour further it looks like the following
the file size is being incremented, but sql is not updating it's internal records.
so when tempdb...
April 28, 2010 at 8:08 am
if we shut the sql server down and re-start then tempdb is re-created - but the issue still occurs on every expand
it also applies to log files as well as...
April 28, 2010 at 7:19 am
vinodpec (4/28/2010)
SELECT *
FROM EmpAddress addr
LEFT JOIN EmpEducation edu
ON addr.empid = edu.empid
--WHERE EDU.EMPID IS NULL
WHERE addr. AddType = 2
SELECT *...
April 28, 2010 at 5:10 am
why did the servcie shut down ?
if you shut the machine down ungracefully (power cable removed) then you might have damaged master.mdf, or master.mdf has become out of log sequence...
April 28, 2010 at 5:06 am
actually you can use some of the 2008 functions even if the db is in 2000 mode
we found this when our devs started checking in 2008 code into our 2000...
April 28, 2010 at 5:02 am
it all depends on the patch - and it is not recommended in all instances
some patches are also cluster aware (in fact most these days) so you will not be...
April 9, 2010 at 8:42 am
usually someone has left a connection open to the sql server and their password has expired or their account has been disabled (or connection to the domain controller may have...
April 9, 2010 at 6:00 am
sanketahir1985 (4/9/2010)
I have one server with 4 CPU , 8GB Ram
6GB is dedicated to sql server
now we have scenario where some stored procedure get fired after every 5...
April 9, 2010 at 4:55 am
actually - i will just correct myself
you need to store the target column as text or LOB
varchar2 has a limit of 4000 byes
varchar has a length of 2000 bytes in...
April 9, 2010 at 4:52 am
you need to speak to an oracle dba on this
i'm not 100% sure on this but i beleive you need to change the target column in the oracle database to...
April 9, 2010 at 4:50 am
as far as i am aware this is correct for sql logins only
however it would be wise to check this before you accept my response as accurate
I can conformt that...
April 9, 2010 at 4:46 am
Viewing 15 posts - 1,351 through 1,365 (of 1,995 total)