Forum Replies Created

Viewing 15 posts - 7,831 through 7,845 (of 15,381 total)

  • RE: Time out error.

    SQLCrazyCertified (6/24/2013)


    No active transactions...and they've been doing this way for long time without any issues, just started happen since Friday.

    SueTons.

    So what happened late last week? Are there new triggers on...

  • RE: Create procedure for data modification

    Rauf Miah (6/24/2013)


    THANK YOU FOR NICE RESPONSE. THE CODE DOES THE TRICK. BUT SOON I LIKE TO LEARN THE TALLY.

    Then take some time and read the article that Steven linked...

  • RE: Time out error.

    SQLCrazyCertified (6/24/2013)


    Sean Lange (6/24/2013)


    SQLCrazyCertified (6/24/2013)


    Hi,

    When a user tries to edit a table, he is getting a timeout error.

    Here is a brief details about the error.

    "Executed SQL Stmnts: "the stmnts"...

  • RE: Time out error.

    SQLCrazyCertified (6/24/2013)


    Hi,

    When a user tries to edit a table, he is getting a timeout error.

    Here is a brief details about the error.

    "Executed SQL Stmnts: "the stmnts" from dbo.tablename,

    Error source:...

  • RE: How to make hierarchical structure

    Hi and welcome to the forums. In order to help we will need a few things:

    1. Sample DDL in the form of CREATE TABLE statements

    2. Sample data in the form...

  • RE: Need tree structure

    In order to help we will need a few things:

    1. Sample DDL in the form of CREATE TABLE statements

    2. Sample data in the form of INSERT INTO statements

    3. Expected results...

  • RE: Need help with query

    I don't think there is anyway to do this kind of thing directly in Access. The query engine is just not that robust. You will probably have to do this...

  • RE: selecting same columns

    There are some faster ways to generate a tally table. The code you are looking at is selecting data from actual tables and inserting into a temp table. You can...

  • RE: Linked Primary Keys after INSERT within the same table

    TBIG (6/23/2013)


    I need to do an INSERT for a subset of records in a table to the same table. What is the best way to determine the primary key of...

  • RE: Create procedure for data modification

    As Jeff and Steve have eluded, you don't need a loop to do this. You just need to use a tally table.

    Something like this should be close.

    update m set mrno...

  • RE: Querying a stored procedure within a stored procedure

    dob111283 (6/19/2013)


    My question is, why can't I do an offset fetch here? IT won't let me. I have to stick to Top.

    When you say it won't let you what does...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (6/23/2013)


    I am on the plane to Atlanta. From there to Indianapolis where I will be at Camp Attebury for a week.

    Best of luck man. Hope all goes well,...

  • RE: Access Query ported to SQL

    realvilla (6/21/2013)


    Sean, you may not be there today but I made an interesting discovery. I tried four groupings for totals. For example, I took the group represented by:

    Select...

  • RE: Very specific query

    This seems to work fine. There is no reason it should change just because it is in a view.

    if OBJECT_ID('Something') is not null

    drop table Something

    GO

    create table Something

    (

    ID int,

    Type varchar(10),

    Term varchar(10)

    )

    GO

    insert...

  • RE: Stored procedures

    RCDAWebmaster (6/21/2013)


    That makes sense. I am liking the stored procedures.

    thanks for the help.

    You're welcome. Glad that makes sense. It is a zillion times less complicated than building up a...

Viewing 15 posts - 7,831 through 7,845 (of 15,381 total)