Viewing 15 posts - 6,121 through 6,135 (of 6,678 total)
Not real sure what you are looking for - why would you want to open a new query without a connection?
Or, are you looking for a way to open a...
August 22, 2008 at 3:20 pm
How are you determining where each DOS falls? Is it strictly based upon earlier to later? What version of SQL Server are you using?
Please review the article: Best...
August 22, 2008 at 3:06 pm
If you want to be able to ignore the file group backup in your backup chain - look at running that backup with COPY_ONLY.
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...
August 20, 2008 at 2:32 pm
pete.trudell (8/20/2008)
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...
August 19, 2008 at 7:29 pm
ruben ruvalcaba (8/19/2008)
In your sample you build a pivot when you already now...
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...
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...
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...
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...
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...
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...
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...
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 =...
August 18, 2008 at 4:45 pm
Viewing 15 posts - 6,121 through 6,135 (of 6,678 total)