Viewing 15 posts - 331 through 345 (of 526 total)
Instead of tables I would do views. Less data space and once you create the first one in the QA such as:
CREATE VIEW Top_90_AK
AS
SELECT TOP 90 PERCENT *
FROM TableName
WHERE...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
April 1, 2005 at 11:28 am
Assuming that your key field is not the top 10 percent field, I think it would be something like below. I maybe overly complicating it...but this is how I...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
March 31, 2005 at 3:34 pm
The catch is that the smalldatetime still has the hours:minutes in it. If the data is stored as smalldatetime you have to do a between. Or the where clause...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
March 31, 2005 at 2:50 pm
No pretty way to do it.
DECLARE @BeginDate as datetime
DECLARE @EndDate as datetime
select @BeginDate = CAST(cast(right('0000' + cast(datepart(year,getdate()) as varchar),4) as NVarchar) + '-' +
...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
March 31, 2005 at 2:18 pm
What account is the local server registered with? LocalSystem? It does not have rights to register any non-local server. If a domain user account, does it have access/permission to the...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
March 31, 2005 at 1:53 pm
Is this a stand alone server? If so does that local user account have full permissions to all the data and executable paths?
If a member of the domain - are...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
March 29, 2005 at 12:54 pm
Oh, don't forget your manager, his manager, director and possibly the VP or CIO of IT.
You actually have that many layers. For me it's my manger, the VP for...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
March 29, 2005 at 12:49 pm
I was a developer -- 99% Access front-ends on delivered databases -- that was moved into DBA. They created the position for me because I ended up being so far...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
March 29, 2005 at 7:59 am
My boss -- former New Horizons instructor -- suggested the 291. I used the preplogic test. Not even close
.
Besides - I'm thinking, eventually,...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
March 28, 2005 at 8:43 am
Not to throw too big a monkey-wrench at your ideas....but... What is your (the mangement) expectation for recovery time.
With a 2.5GB database backups should take less than 5 minutes unless...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
March 25, 2005 at 4:07 pm
Is the MSSQLSERVER service running?
The SQLSERVERAGENT service will not start unless the MSSQLSERVER is running. When you fire SQLSERVERAGENT, by default, it tries to start MSSQLSERVER.
In this post 9/21/2004...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
March 25, 2005 at 9:38 am
Viewing 15 posts - 331 through 345 (of 526 total)