Forum Replies Created

Viewing 15 posts - 6,316 through 6,330 (of 6,678 total)

  • RE: Help with Formatting a SQL Query

    Shoot - that is one of the reasons I recommended reading the article about how to post. If I had something to test against, I would have been able...

  • RE: Deleted Database

    If the event happened recently enough, you can try pulling it from the default trace.

    Declare @path varchar(100);

    Set @path = (select path from sys.traces where id = 1);

    Select *

    ...

  • RE: Deleted Database

    Check the SQL Server logs - should be something in there related to the drop/detach of the affected database.

  • RE: Help with Formatting a SQL Query

    jonathanmreynolds (7/21/2008)


    Once I have an understanding of the relationships, it really shouldn't be that hard to figure this out.

    Hi Jeffrey - thanks again for your time assisting me with this....

  • RE: Server Agent

    It probably did not install of the express edition - but, you probably missed the check box to install the database engine.

    Try re-running the setup and make sure you select...

  • RE: Server Agent

    Okay, then it should be installed. How are you determining that it is not installed?

    What services do you have that start with SQL*?

    Try opening SQL Server Configuration Manager and...

  • RE: Export to excel from SQL Table

    levani (7/17/2008)


    Hi all. I am quite new in SQL and I need help.

    What I am trying to do is to export the Data from tables to Excel fiel

    I creted the...

  • RE: Server Agent

    You probably installed the Express version and not a trial edition. The express version does not come with the agent.

    To verify, run: SELECT @@version; from a query window or...

  • RE: Update Proc, May or may not update required field

    If you are going to be passing in all of the parameters, then no - you don't need to coalesce the parameters.

  • RE: Inserting value in existing record by condition

    No - don't understand what you are asking. Please read the following article and re-post your question:

    Best Practices: http://www.sqlservercentral.com/articles/Best+Practices/61537/

  • RE: server backup

    Are you asking about a database being backed up?

    Look in BOL at BACKUP and RESTORE to see how to backup a database and restore to another server.

  • RE: Update Proc, May or may not update required field

    jbloes (7/20/2008)


    I have an update procedure for my Location table. Out of all of these fields I'm updating, the only required field in the table is the LocName.

    The problem...

  • RE: loosing permissions on stored procedures

    george sibbald (7/20/2008)


    this is in the 2005 forum but you stated you are using sql 2000, in that cases you cannot use schemas

    George - I must of skipped right over...

  • RE: loosing permissions on stored procedures

    The only way I can think of would be to create roles with the appropriate schema level permissions. Once you have a role defined, and assigned the users/groups to...

  • RE: SQL Queries

    A table, by definition, has no order - so, there is no way to return rows in the order they were entered.

    The only way you can write a query in...

Viewing 15 posts - 6,316 through 6,330 (of 6,678 total)