Viewing 15 posts - 2,296 through 2,310 (of 7,429 total)
No. You could try inserts to a logging table or use sp_oa... items to call and talk to a text file to write data to (creates a high failure point...
February 24, 2004 at 5:17 am
Not sure what you need you message seems chopped. Weird it was chopped when viewed from the house. Did the last edited remark go away?
February 24, 2004 at 5:14 am
Do you mean for admin duties or client editing? If for admin I suggest the best tool is still EM although some products offer features of EM with a bit...
February 24, 2004 at 5:13 am
I do believe it is slightly wrong but the right concept.
Here is the info from MS. Found at http://support.microsoft.com/default.aspx?scid=kb;EN-US;224071
(Note wat is says to do before reattach.)
February 24, 2004 at 5:06 am
I agree w/Oskar, I personally find none of these appealing. However the box desn't really say SQL to me either as well. But the question is what are you trying...
February 20, 2004 at 8:08 am
The best tool at your disposal is Profiler, set it to monitor the server for the following events should give you an idea.
Database - Data File Auto Grow
Database - Log...
February 19, 2004 at 7:44 am
Pretty much the who is SQL Server, any action that generates temp tables such as temp table creation, order by, group by, some bulk inserts and other items can impact...
February 19, 2004 at 6:49 am
I tried this and got not issues, also tried with creating the table as a whole and adding office at the end.
declare @fmt as varchar(1)
set @fmt = 'b'
if object_id('tempdb..#process') is...
February 12, 2004 at 7:20 am
Another option
SELECT
itemno,
SUM((CASE WHEN YEAR(shipdate) = 2003 THEN qty ELSE 0 END)) [2003qty],
SUM((CASE WHEN YEAR(shipdate) = 2003 THEN sales ELSE 0 END)) [2003sales],
SUM((CASE WHEN YEAR(shipdate) = 2002 THEN...
February 12, 2004 at 6:17 am
I prefer this method.
SELECT
DATEADD(d,-1,DATEADD(m,datediff(m,0,getdate()),0)) as LastDayPreviousMonth,
DATEADD(m,datediff(m,0,getdate()),0) as FirstDayOfCurrentMonth,
DATEADD(m,1,DATEADD(m,datediff(m,0,getdate()),0)) as FirstDayOfNextMonth
February 11, 2004 at 7:02 pm
Oops, thanks Mike, meant once per statement when I said per transaction.
February 11, 2004 at 1:57 pm
Ok I am not going to ding you on concept as I have tried this before. However here is a good starting article for the reasons why this is bad...
February 11, 2004 at 11:00 am
I believe this is an issue in the compile portion of the query engine in that it recognizes the CREATE TABLE #process and has built in memory then sees again...
February 11, 2004 at 8:55 am
First you must understand that NULL is an unknown value so when you conditionally exclued data the value cannot be determined and could in fact be the value to exclude.
If...
February 11, 2004 at 8:53 am
Viewing 15 posts - 2,296 through 2,310 (of 7,429 total)