Forum Replies Created

Viewing 15 posts - 2,011 through 2,025 (of 3,232 total)

  • RE: can I Shrink the database?

    Look at DBCC SHRINKFILE in BOL.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Find all the matches for col1 in col2 and display athe matches in col2 as column seperated values

    I'm not sure how that is similar, but here's this should be continued in your other post here:

    http://www.sqlservercentral.com/Forums/Topic421242-338-1.aspx

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: INSERT A Record Based on Count

    Well Jeff, it looks like you've got another comparison between the new 2005 T-SQL options and good 'ol fashioned set based operations. Here's another great reason not to jump...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Based on conditions display only one particular value in colB against ColA

    There may be some fancier way to do this in 2005 (or just some fancier way in general) but this should get you going in the right direction.

    DECLARE @table TABLE...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Trigger causing locks on table

    Karim,

    By explicit transaction, Jeff is asking if in you used the keywords BEGIN TRANSACTION prior to your update.

    Please continue this thread here:

    http://www.sqlservercentral.com/Forums/Topic419893-8-2.aspx

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Querying remote database

    You've already set up the linked server right? From the error message, it looks like you have but I thought I'd check. If so, then this looks like...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Determining the number of concurrent connection on a database

    sp_who2 will show all current connections to a SQL Server instance. Is this what you are looking for?

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Restoration Issue

    Austin_123 (11/6/2007)


    Thanks John,

    So according to you I'll not able to recover last 25 min data

    Regards,

    Austin

    Not unless you can to what Happycat59 is suggesting, but from the sounds of your initial...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Restoration Issue

    Using the strategy that you've posted, you can only recover up to every half hour. This means that if your database crashes at :29 past the hour (or :25...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Whack a Database

    I agree with Matt. I think the delete works well as designed and that there is already enough security measures built in. They could add a dialog that...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Passing String example "10013,10014,10015" in Stored Procedure

    No, arrays are not supported. He is using a table variable and he just happened to use the word array in the table variable name. I would recommend...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Stored Procedure Concurrency

    If the stored procedure deletes all data from the table, why does it matter? Let's say that the first call is complete, 15 seconds go by, and then the...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: How can I do this?

    Write a stored procedure that queries the table and aggregates requests for each user and generates one e-mail. Schedule the stored procedure to run at a set interval or...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: I just want to do my job !

    But Books Build Character??? Maybe in a movie, but in real life. My opinion, it is a combination of our innate traits and environment. All the people we have...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: SQL Query - Insert data from one table into the other

    INSERT INTO TableA

    SELECT * FROM TableB

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

Viewing 15 posts - 2,011 through 2,025 (of 3,232 total)