Viewing 15 posts - 1,126 through 1,140 (of 7,429 total)
The thing that always irked me thou with the built in FTP component is how poorly it performs. I deal with very larg files sometimes and with http://ftp.exe and...
July 1, 2005 at 7:44 am
I see this. When I tested wrote and tested this I am fairly sure I used QA (not sure if was 7 or 2000 thou) and against multiple 7 instances but...
June 3, 2005 at 7:57 am
From everything I recall and have read there is no such need in the 64bit environment and SQL should have no problems with using the memory.
This however will provide a...
June 2, 2005 at 6:37 am
Just purchased a 64bit intel processor and plan to test SQL on it to see if I can tell a difference. But other than memory support I don't see much...
May 26, 2005 at 6:47 am
Also you might want to consider setting up a seperate filegroup for text data as oppossed to your primary filegroup. In SQL 7 there were known issues with recovery of...
May 9, 2005 at 7:28 am
In addition the SELECT generates a recordset whereas PRINT returns to the message buffer.
May 6, 2005 at 6:55 am
That would have to be in your Stored Procedure. And IsNull will rely on data actually being returned. Could you post what the output looks like for the data and...
May 6, 2005 at 6:52 am
Without assuming anything if this code is for a stored procedure consider using multiple procdures with one deciding the logic.
CREATE PROC dbo.GetDataProc
@DateSubmitted as datetime = null
AS
SET NOCOUNT ON
If @DateSubmitted IS...
May 6, 2005 at 6:50 am
To clairfy the previous this should do it.
SELECT
P.PERINDEX,
SUM(CASE
WHEN
BKI.RexType = 'R' AND
bki.mrwid != 'R' AND
bki.mrwid NOT LIKE 'R[0-2]%'
THEN
BKI.BkiNumber
ELSE
0
END)
FROM X, etc etc
May 6, 2005 at 6:41 am
Hope your manager has a charge back policy if your groups budget seperately. The way it works for use if a restore has to be done it is anywhere from...
May 5, 2005 at 11:19 am
May not be that simple. You say using that view, is dbo.plt a view? And if so are the indexes for subscriber_no and ban on the index or underlying tables.
Can...
May 5, 2005 at 11:15 am
No. The code can do Select, Update, Delete and Insert against tables and views and EXEC against other SPs or utilize user defined functions without granting permissions. That is unless you...
May 5, 2005 at 11:09 am
Not sure they couldn't. You have to look at the companies busness model and trim any unneccessary items to be 100% sure. But in the short term they will not...
May 4, 2005 at 2:09 pm
I am just going to throw this one to the wind for fun.
Let them choose to do as they please becuase ultimately if they screw the system the system will...
May 4, 2005 at 1:41 pm
If it is a standard table then no. But if it is a temporary table prefixed with eiher # or ## then yes.
May 4, 2005 at 1:07 pm
Viewing 15 posts - 1,126 through 1,140 (of 7,429 total)