Forum Replies Created

Viewing 15 posts - 4,921 through 4,935 (of 6,394 total)

  • RE: Today's Random Word!

    JAZZ Master (5/24/2012)


    anthony.green (5/24/2012)


    Daniel Bowlin (5/24/2012)


    anthony.green (5/24/2012)


    Ray K (5/24/2012)


    SQLRNNR (5/23/2012)


    Revenant (5/23/2012)


    tiger

    Survivor

    Foreigner

    asylum

    records

    roadrunner (beep beep)

    Wiley

    Merrie Melodies

  • RE: Today's Random Word!

    Daniel Bowlin (5/24/2012)


    anthony.green (5/24/2012)


    Ray K (5/24/2012)


    SQLRNNR (5/23/2012)


    Revenant (5/23/2012)


    tiger

    Survivor

    Foreigner

    asylum

    records

    roadrunner (beep beep)

  • RE: Update Table with the content of a document directory

    No problem, happy to help as always.

  • RE: Orphaned Accounts

    Only SQL authentication accounts become "orphaned" this is due to the SID's being different on Server1 to Server2. The exception to this is if the SQL accounts have been...

  • RE: Update Table with the content of a document directory

    It's a seperate check box on the SQL Server installation, so you will need the SQL Server media to install BIDS. Its a completly seperate program from SSMS.

    The installation...

  • RE: Update Table with the content of a document directory

    When you install SQL you have the option to install what we call BIDS (business intelligence development studio), if you dont have it installed, just simply run through the media...

  • RE: BAK/TRN Cleanup question

    You would need to build in a dynamic date call something like the below

    declare @datestamp nvarchar(30), @cmd nvarchar(max)

    set @datestamp = REPLACE(REPLACE(REPLACE(CONVERT(NVARCHAR,CURRENT_TIMESTAMP,120),'-',''),':',''),' ','')

    set @cmd = 'BACKUP LOG db1 TO DISK =...

  • RE: Sending email script

    Something like this

    DECLARE @toemail varchar(150), @jobname nvarchar(150), @short_desc nvarchar(150)

    DECLARE email_cursor CURSOR FOR SELECT email, RTRIM(Job_name), RTRIM(short_desc) FROM vw_expiring_jobs

    OPEN email_cursor

    FETCH NEXT FROM email_cursor

    INTO @toemail, @jobname, @short_desc

    WHILE @@FETCH_STATUS = 0

    BEGIN

    PRINT @toemail

    DECLARE @body...

  • RE: Need to change SQL Server Collation level

    What is the business requirements on changing the server level collation? Is there a specific problem you are attempting to fix?

    Rebuilding the master DB will result in all the...

  • RE: Where are Reporting Services Data Sources .sln files stored?

    They are stored on the machine used to develop the solution. If you have something like TFS or a source control environment, you could see if the person uploaded...

  • RE: BAK/TRN Cleanup question

    Yes your log backups are working, you can do a query on the MSDB tables to check that they are working as well.

    What you are doing is appending to an...

  • RE: cmd file name with space between each string

    what do you get if you remove no_output?

  • RE: Today's Random Word!

    Ray K (5/24/2012)


    SQLRNNR (5/23/2012)


    Revenant (5/23/2012)


    tiger

    Survivor

    Foreigner

    asylum

  • RE: cmd file name with space between each string

    What error messages do you get?

  • RE: General Qestions

    Eugene Elutin (5/24/2012)


    Loundy (5/24/2012)


    THANK YOU EVERYONE!

    i was having a crap day but this has totally cheered me up!! 🙂

    Give us your address and we will send you our invoices. It...

Viewing 15 posts - 4,921 through 4,935 (of 6,394 total)