Viewing 15 posts - 1,351 through 1,365 (of 1,999 total)
are you trying to purge the data completely or is it a selective delete?
and a really stupid question, but no-one has asked the obvious.
are you deleteing the data in the...
June 15, 2011 at 7:45 am
there are many ways you can do this
i often opt to save the Excel file as CSV and then use BULK INSERT
you could use SSIS packages
but by far the...
March 10, 2011 at 8:37 am
If you have a copy of REDGATE SQLCOMPARE you can use the API for this to compare each database to a "template database" you can then have it put...
November 22, 2010 at 4:05 am
99.9% of the time, I prefer dealing with those databases that use surrogate keys, be they 'Identity', 'GUID' or other. I find it much easier to find the links I...
October 26, 2010 at 2:20 am
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
Viewing 15 posts - 1,351 through 1,365 (of 1,999 total)