Viewing 15 posts - 11,911 through 11,925 (of 14,953 total)
Jeff Moden (9/23/2008)
The only time I even come close to Hungarian notation is that I'll use a...
September 26, 2008 at 11:41 am
Have you made sure the alerts are set up with a working DB Mail account and all that?
September 26, 2008 at 11:37 am
I haven't run into that, but my best guess it that I would check which jobs were on schedule 64 and see if there's any issue with any of them....
September 26, 2008 at 11:37 am
Will Summers (9/26/2008)
September 26, 2008 at 11:31 am
I kind of assumed the original post wasn't about 64-bit, since that would kind of make the question pointless.
September 26, 2008 at 7:13 am
I would log perfmon to a file, then import that into Excel and analyze it there. If I ever found that I needed to do more complex analysis, I'd...
September 26, 2008 at 7:13 am
For me, it depends on what I'm accomplishing or contributing towards. I've worked for causes that were saving lives, and for those, I worked long weeks, long shifts, missed...
September 25, 2008 at 8:11 am
Luke L (9/24/2008)
September 25, 2008 at 8:03 am
I modified the test as follows, to limit by year:
alter table dbo.SomeTable
add Col6Year as datepart(year, col6);
drop index IDX_Col6Cleaned on dbo.SomeTable;
create index IDX_Col6 on dbo.SomeTable (col6year, col6cleaned, col1);
create table #Dates (
BusinessDay...
September 25, 2008 at 7:59 am
Yeah, linking servers using domain security should be easier. It's a pain. Using mixed authentication is the easiest solution to it.
September 25, 2008 at 7:15 am
Oh, and just to test the original idea:
declare @Col1 int
select @col1 = col1
from dbo.sometable
inner join #dates
on CAST( FLOOR( CAST( (col6) AS FLOAT ) ) AS DATETIME ) = businessday
/*
SQL Server...
September 24, 2008 at 1:36 pm
I just ran a test on this.
alter table dbo.SomeTable
add Col6Cleaned as dateadd(day, datediff(day, 0, col6), 0) -- Just the date, no time
create index IDX_Col6Cleaned on dbo.sometable(col6cleaned)
create table #Dates (
BusinessDay datetime...
September 24, 2008 at 1:30 pm
Since you're on Windows Standard, you can't go above 4 Gig of RAM in use anyway, so there's no point to AWE. I don't think you can even enable...
September 24, 2008 at 1:10 pm
Perfmon should do what you need.
Leave them in regular files. If you need to slice and dice the data, import it into an analysis cube, or relational tables, but...
September 24, 2008 at 1:08 pm
Have you tried setting it up as an Access project instead of an Access application?
A project connects directly to the database, no linked tables, and can use stored procedures and...
September 24, 2008 at 1:06 pm
Viewing 15 posts - 11,911 through 11,925 (of 14,953 total)