Forum Replies Created

Viewing 15 posts - 11,056 through 11,070 (of 26,486 total)

  • RE: SQL Server as Main DB Engine for Devices in the Field

    But, you might be able to get a team together from here that can help, if you are willing to work with geographically dispersed individuals.

    The marvels of modern technology.

  • RE: The Cult of Mediocrity

    sturner (6/26/2012)


    patrickmcginnis59 (6/26/2012)


    sturner (6/26/2012)


    One other thing about the three entrepreneurs you cited: they all achieved their success without a dime of government stimulus (i.e taxpayers money).

    Counterpoint: the Apollo space program.

    Its...

  • RE: Are the posted questions getting worse?

    bitbucket-25253 (6/26/2012)


    Any one interested in convincing this OP that for a development / design / implementation contract as a consultant they would help him/her solve their problem.

    http://www.sqlservercentral.com/Forums/Topic1321325-391-1.aspx

    As an individual, nope....

  • RE: How to use scalar valued function in select statement

    Not sure why you got the error message you did, the function only has one parameter and you are passing it one parameter.

    The following, however, is how I would do...

  • RE: Disk configuration

    ScottPletcher (6/26/2012)


    You're more likely to lose a complete RAID1 mirror, than you are 3 drives out of a 4 disk RAID10 array

    OK, but it's not the odds against losing it,...

  • RE: Today's Random Word!

    Smoky

  • RE: Scripting Languages

    Sean Lange (6/26/2012)


    Robert.Sterbal (6/26/2012)


    I guess I'm trying to figure out where to spend my time going forward. Please add to the list as needed

    I guess that depends on what you...

  • RE: select statement and output parameter

    Try the following code snippet based on what you originally posted:

    DECLARE @Document TABLE (DocumentID INT);

    INSERT INTO C_Documents (

    DocumentSectionID,

    FullPath,

    FileName,

    FileTitle,

    Description,

    UserID,

    DateCreated,

    TimeStamp

    )

    OUTPUT INSERTED.DocumentID INTO @Document(DocumentID)

    VALUES (

    @DocumentSectionID,

    @FullPath,

    @FileName,

    @FileTitle,

    @Description,

    @UserId,

    GETDATE(),

    GETDATE()

    );

    INSERT INTO F_ProjectDocument(

    ProjectID,

    RoundID,

    DocumentID,

    DocumentTypeID,

    FFPUploadID,

    UploadOn,

    UploadBy,

    DateCreated,

    UserID,

    TimeStamp

    )

    SELECT

    --VALUES (

    @P,

    @R,

    D.DocumentID,

    @DocumentTypeID,

    @FFPUploadID,

    GETDATE(),

    @UserId,

    GETDATE(),

    @UserId,

    GETDATE()

    --)

    FROM

    @Document d;

  • RE: What system databases do I need to backup?

    UconnDBA (6/26/2012)


    Unless there is absolutely another reason to do otherwise, which i have to this point i have yet to find in the 10+ years have been doing SQL...

    ...

  • RE: Distinct

    river1 (6/26/2012)


    Hi,

    I have this query:

    (SELECT

    DISTINCT([NIF_ANTIGO]),

    [NIF],

    [FILIAL_NUMBER],

    [STATUS],

    [COD_GRP_CONTRIBUINTE],

    [COD_TP_SINGULARES],

    [COD_MET_TRIBUTARIO],

    [COD_TP_IMPOSTOS],

    [GRANDE_CONTRIBUINTE],

    [NOME],

    [MORADA],

    [COD_CIDADE],

    [C_POSTAL],

    [TELEFONE],

    [FAX],

    [COD_PROVINCIA],

    [COD_MUNICIPIO],

    [COD_REP_FISCAL],

    [DT_INICIO],

    [DT_ALTERACAO],

    [DT_CESSACAO],

    [COD_MOT_CESSACAO],

    [MOT_CESSACAO],

    [COD_TP_INSTITUICAO],

    [COD_FUNC],

    [COD_COMUNA],

    [COD_BAIRRO],

    [OBS],

    [DT_BEGIN],

    [BI],

    [OLD_NIF],

    [PSERVTCO],

    [PSERVTCP],

    [PSERVA],

    [DTACESSACAOTCO],

    [DTACESSACAOTCP],

    [DTACESSACAOA]

    FROM

    BULK_CONTRIBUINTES_21 A

    WHERE

    A.VALIDO_BULK IS NULL AND

    A.NIF_ANTIGO NOT IN

    (SELECT NIF_ANTIGO FROM SGCTCentral.DBO.CONTRIBUINTES WHERE NIF_ANTIGO IS NOT NULL) )a

    Shoudn't it return only...

  • RE: Which is the best way to query data between 2 dates

    I'd say both queries have issues as well. Since you are apparently using SQL Server 2005 (this is a SQL Server 2005 forum you posted in) and are using the...

  • RE: SSIS in JOB- Error

    Please realize that I am just shooting in the dark here since I can't see from here what you see there. If it is the service account, you should...

  • RE: Are the posted questions getting worse?

    mtillman-921105 (6/25/2012)


    Lynn Pettis (6/25/2012)


    Evil Kraig F (6/25/2012)


    bitbucket-25253 (6/25/2012)


    Any one know if those spreading Colorado wild fires are threatening Steve's home or the horses? Any one hear from Steve on...

  • RE: SSIS in JOB- Error

    Which server are you trying to run SSIS package? I wouldn't be surprised if the problem is the account on which your Dev box is running (Local Service Account)...

  • RE: Are the posted questions getting worse?

    Evil Kraig F (6/25/2012)


    bitbucket-25253 (6/25/2012)


    Any one know if those spreading Colorado wild fires are threatening Steve's home or the horses? Any one hear from Steve on twitter or whatever?

    http://news.yahoo.com/colorado-fire-near-pikes-peak-forces-11-000-014551591.html

    He's...

Viewing 15 posts - 11,056 through 11,070 (of 26,486 total)