Forum Replies Created

Viewing 15 posts - 1,126 through 1,140 (of 7,429 total)

  • RE: Push FTP

    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...

  • RE: Understanding the difference between IS NULL and = NULL

    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...

  • RE: /3b switch

    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...

  • RE: A Bit About 64-bit

    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...

  • RE: Filegroup full (NOT what you''''re thinking)

    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...

  • RE: why is the diference between a select and print output?

    In addition the SELECT generates a recordset whereas PRINT returns to the message buffer.

  • RE: DBNULL

    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...

  • RE: SQL not returning qualifying rows

    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...

  • RE: Yet another simple question

    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

  • RE: Need help restoring a single record

    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...

  • RE: Query-Index [Force it?]

    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...

  • RE: Permission hierarchy

    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...

  • RE: More Visas

    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...

  • RE: More Visas

    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...

  • RE: Permission hierarchy

    If it is a standard table then no. But if it is a temporary table prefixed with eiher # or ## then yes.

Viewing 15 posts - 1,126 through 1,140 (of 7,429 total)