Forum Replies Created

Viewing 15 posts - 13,636 through 13,650 (of 18,923 total)

  • RE: Nested stored procedure: Parent name?

    If you can't pass something to the callee you're screwed. You'll have to change the code in all the calling procs to accomplish this. And the simplest way...

  • RE: Sybase to SqlServer syntax question

    Sybase to sql server .

    Raiserror ('message here', SeverityLevel, ??)

    look it up in the books online for the exact details.

  • RE: Insert

    Can't tell you untill you show us SAMPLE DATA, SAMPLE RESULTS.

  • RE: append string to ntext field

    I'm still wondering why he's using ntext instead of nvarchar... I know my users and they don't like to type 3-4 pages of paragraphs just for the fun of it.

  • RE: Do We Need Paper?

    Can't wait to see that day .

  • RE: How this process work

    The server use cached data too. If you simply delete the tablename, the data may remain in ram and god knows in how many global variables to the server/em/qa....

  • RE: Using A recordset as an input parameter for a stored procedure

    I have to assume sometimes... now and then I feel like I'm interrogating a POW to find out the info I really need to solve a problem

  • RE: Insert

    Whatever = update whatever you need to.

    Unique values for pk and fk?? They have to be MATCHING VALUES.

    Can you show us the before and after picture of what you...

  • RE: Parameter Question

    CREATE PROCEDURE dbo.SPName @DateStart as datetime, @DateEnd as datetime

    AS

    SET NOCOUNT ON

    Select WhatEver from dbo.YourTable where DateCol >= @DateStart and DateCol < @DateEnd

    SET NOCOUNT OFF

    This kind of sp allows you to...

  • RE: How this process work

    If the server is trying to select from a missing table that he thinks should be there >> that might cause some problems.

  • RE: Database related song or film titles.

    Sure is... I'm glad you're not solely basing your choice on that... I may take that interview now .

  • RE: Cursors

    Got other threads to answer and some reports to build... got my days of worked planned already so I can live without this problem

  • RE: Using A recordset as an input parameter for a stored procedure

    I was assuming an id list. Another way would be a #temp table where you'd insert the data to and use that table to do the rest of the...

  • RE: Formula

    HTH.

  • RE: parameter in four-partname tables

    I see. Might I suggest a simple security add on.

    Add this verification before using the variable as the tablename :

    IF EXISTS (Select * from DBNAME.dbo.SysObjects where name =...

Viewing 15 posts - 13,636 through 13,650 (of 18,923 total)