Forum Replies Created

Viewing 15 posts - 11,536 through 11,550 (of 18,923 total)

  • RE: TSQL Help

    Thanx Vlad.

    Now here's the interesting part.  How is david gonna highlight that space in red without using an underscore ?

  • RE: TSQL Help

    I'm sorry David but I just don't see any difference between the 2 statements.  Care to highlight it for me?

  • RE: Up system table

    Ya and there are many other ways to update the text of the stored procs / views... without going to that extreme.

     

     

    What do you need to do exactly?

  • RE: Mind Your Manners

    I think you got most of them...

     

     

    So what were those top 10 newbie questions (from the top of you head)?

  • RE: Mind Your Manners

    Let's try to fix the forum and repost my message :

     

    Same here.  It made me relie so many memories.  Thanx for the great article.

  • RE: Is it possible to schedule a job to run every 10 seconds ??

    Thanx for the confirmation... but I knew that my source was extremely reliable on that one .

  • RE: Mind Your Manners

    Same here.  It made me relie so many memories.  Thanx for the great article.

  • RE: Job Step Duration

    I second that .

  • RE: a paradox

    Yup.  that can happen if you need to keep "deleted" data in an archive table or even in the main table.

  • RE: Count record from different table

    This code is just to have a demo table and data to show how the query works.

     

    You don't actually need to reinsert any data in the table

  • RE: Using USE when the database doesn''''t exist.

    This compiles and executes just fine on my server :

     

    IF EXISTS (SELECT * FROM MASTER..SYSDATABASES WHERE NAME = 'FakeDB')

    begin

     EXEC FakeDB.dbo.SomeProc

    end

  • RE: Maintenance Plans ?

    The shrink database can work if there is free space in the files.  But in my last case I had 15 GB of data in the log for a 250 MB...

  • RE: Maintenance Plans ?

    Nope... I'm just telling you what I took for me to get it working.  I'm sure there are other ways but I'm in no way an expert on that matter.

  • RE: Maintenance Plans ?

    ...and sp_helpdb just gives you the info that you see in the database properties.

  • RE: Maintenance Plans ?

    As I understand it :

    first backup creates a starting point.

    log backup creates a second point, but since some new transaction can be...

Viewing 15 posts - 11,536 through 11,550 (of 18,923 total)