Viewing 15 posts - 2,401 through 2,415 (of 3,011 total)
There are places that will not consider someone without a bachelor’s degree because a high school diploma is no longer sufficient to demonstrate the most basic of job skills, the...
March 31, 2008 at 9:22 am
If you have a whole week to get if from LA to SF, back it up on tape in LA, ship the tape to SF overnight express, and restore it...
March 26, 2008 at 3:01 pm
Adam Bean (3/24/2008)
That works, thank you ... but can anyone explain why mine does not? It works perfect in 2005 ... this is driving me insane.
You made it too complex....
March 24, 2008 at 3:28 pm
SELECT TOP 0
*,
[schemaname] = convert(varchar(48),null)
INTO
#sysobjects
FROM
[dbo].[sysobjects]
EXEC('
use master
INSERT INTO #sysobjects
SELECT
*,
USER_NAME(uid)
FROM
[dbo].[sysobjects]
WHERE
[type] = ''U''
')
SELECT [schemaname] FROM #sysobjects
DROP TABLE #sysobjects
March 24, 2008 at 1:32 pm
Adam Bean (3/24/2008)
I think my biggest table in this database is 56gb.The crazy thing is that sp_spaceused is reporting:
index_sizeunused
-2230440 KB-36888 KB
Negatives!? How is that possible?
You have to update usage to...
March 24, 2008 at 9:55 am
It could cause it. What was the size of the largest table that you reindexed?
March 24, 2008 at 8:22 am
How about the most common reason? bad application code.
March 21, 2008 at 3:55 pm
I think one database per user will result in an impossible to administer application and horrible application performance.
You will regret it immediately and every moment after that.
March 21, 2008 at 3:49 pm
I would ask the developer to explain why this is necessary before proposing a solution.
It doesn’t have the feel of a real business requirement. It sounds more like an...
March 21, 2008 at 3:34 pm
How about making the backups locally to a tape, and dropping the tape into a FedEx package to ship to a central repository?
The data transfer rate is very high, but...
March 21, 2008 at 3:27 pm
If you want help with a query, it would help if you posted the actual code of the query.
March 20, 2008 at 10:22 pm
I think if you look at your case logic, you will realize it did not cover all the conditions. Also, it did not really allow for service that covered...
March 20, 2008 at 11:20 am
You should lookat using the new row versioning or snapshot isolation levels in SQL Server 2005 to deal with these problems.
March 20, 2008 at 10:00 am
I think you missed the possibility that service start could before the start of the war and service end is after the end of the war.
When checking for date range...
March 20, 2008 at 8:54 am
select
[MonthName] = datename(month,a.[Month]),
NumEmp_Curr = sum(case a.CurrentYear when 1 then a.NumEmp else 0 end),
NumEmp_Prior = sum(case a.PriorYear...
March 18, 2008 at 9:28 am
Viewing 15 posts - 2,401 through 2,415 (of 3,011 total)