Viewing 15 posts - 6,121 through 6,135 (of 6,676 total)
If you want to be able to ignore the file group backup in your backup chain - look at running that backup with COPY_ONLY.
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 22, 2008 at 2:41 pm
When you reference a column in one of the unpreserved tables of an outer join, that join will in effect be turned into an inner join.
Example:
SELECT [columns]
FROM table1...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 20, 2008 at 2:32 pm
pete.trudell (8/20/2008)
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 20, 2008 at 2:14 pm
Jeff Moden (8/19/2008)Yeap... 'bout six weeks ago if I recall correctly... the only thing missing for me was doing those bloody dual Pivots...
Do you happen to have the...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 19, 2008 at 7:29 pm
ruben ruvalcaba (8/19/2008)
In your sample you build a pivot when you already now...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 19, 2008 at 4:00 pm
pete.trudell (8/19/2008)
Here's my most recent attempt to create a computer column from several computed columns.
EMonth = DATEPART(m,dbo.employee.LGD)
EDay=DATEPART(d,dbo.employee.LGD)
These work...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 19, 2008 at 3:57 pm
So, if the time is a datetime - is it the actual datetime? In other words, is the time column something like: 1900-01-01 hh:mm:ss.xxx. Or is it the...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 19, 2008 at 2:14 pm
I missed one piece of this:
declare @start datetime, @end datetime
set @start = '01/01/2007'
set @end = '08/14/2008'
/* the above is defined in the procedure */
declare @start_year_month int, @end_year_month int;
set @start_year_month...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 19, 2008 at 1:26 pm
Hey Jeff, good article - reminds me of a fairly recent discussion we had on this forum 😀
Nice to see that you put what we learned in that discussion into...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 19, 2008 at 11:58 am
I am doing very well - thanks for asking.
So, to summarize this issue - we found that WMI was having problems and this caused the service pack to not be...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 19, 2008 at 10:40 am
Just to confirm - you reviewed the view with the unions and used only what you actually needed in the stored procedure? Just curious what approach you used to...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 19, 2008 at 10:34 am
Changing the memory settings does not require a restart. Just make sure you do not set the min server memory equal to the max (I recommend at least 1GB...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 19, 2008 at 10:32 am
You might be running up against parameter sniffing, but I think you can get around that by changing you query to:
declare @start datetime, @end datetime
set @start = '01/01/2007'
set @end =...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 18, 2008 at 4:45 pm
If the job is not scheduled, then either of the following has happened.
1) Someone removed the schedule in the maintenance plan
a) Open the...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 18, 2008 at 1:35 pm
ssismaddy (8/18/2008)
Hi, I have couple of stored procedures which gets the data from a view that is formed by a number of unions.
I would recommend reviewing the view that...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
August 18, 2008 at 1:28 pm
Viewing 15 posts - 6,121 through 6,135 (of 6,676 total)