Viewing 15 posts - 12,331 through 12,345 (of 14,953 total)
I've used workgroup edition. It does include database mail.
August 11, 2008 at 2:25 pm
Barry, when I said, "your" I meant Milu's. He miscopied yours.
Milu, I actually answered on behalf of a number of other people, including Jeff Moden. If you look...
August 11, 2008 at 2:21 pm
declare @SDate datetime, @EDate datetime
select @SDate = '1/8/2008', @EDate = '3/8/2008'
select
dateadd(month, number, -- Months in range
dateadd(day, -1 * datepart(day, @SDate), -- Last Day of (prior) month
dateadd(month, 1, -- Following...
August 11, 2008 at 2:12 pm
Temporary tables can actually be quite valuable. I don't know of a specific single-source of data about using them. Best bet is starting with Books Online and doing...
August 11, 2008 at 1:51 pm
On small tables, SQL will sometimes not even bother doing anything if you tell it to defrag the index, because the fragmentation doesn't matter. On really small tables (I...
August 11, 2008 at 1:34 pm
The easiest solution is going to be deleting from the combined table, before the final upload. You could dump them in the load from the vendor-specific tables, but that's...
August 11, 2008 at 1:12 pm
On the cursors questions, take a look at the system views. There are a set of them for cursors.
August 11, 2008 at 1:05 pm
RAM utilization could definitely be an issue. If any of the reports are big enough, and you don't have the server configured to use all that RAM, they'll end...
August 11, 2008 at 1:04 pm
There isn't "a" plan for that kind of thing. It depends too much on what you're doing, in what environment.
You say you're migrating your production environment from Dev to...
August 11, 2008 at 12:47 pm
Milu (8/11/2008)
Create View vwRecursiveAW AS
WITH DirectReports(ManagerID, EmployeeID, EmployeeLevel) AS
(
SELECT ManagerID, EmployeeID, 0 AS EmployeeLevel
FROM AdventureWorks.HumanResources.Employee
WHERE ManagerID...
August 11, 2008 at 11:11 am
That's definitely odd. Are you certain that it's the SQL server that's timing out, and not something else in between the page sending the query and getting the data...
August 11, 2008 at 10:52 am
If you set up roles on the server (Security tab), you can tell a job to run under a particular login/role.
August 11, 2008 at 10:45 am
I don't know of a way to do that in SQL Server itself. Might be one, but I don't know of one.
If you have a log parser, you should...
August 11, 2008 at 10:42 am
I'm assuming you mean gigabytes, not gigahertz, for your amount of memory.
There's a setting in your server options for maximum (and minimum) memory. You need to make sure that's...
August 11, 2008 at 10:40 am
My personal favorite is the SQL Server Bible series by Paul Nielsen.
What I really recommend, though, is go to a bookstore with a good IT section. Take a list...
August 11, 2008 at 9:15 am
Viewing 15 posts - 12,331 through 12,345 (of 14,953 total)