Forum Replies Created

Viewing 15 posts - 4,546 through 4,560 (of 4,820 total)

  • RE: Where should the DBA Team exist?

    It takes 10 years for several reasons:

    1.) Training is almost always completely inadequate, starting with the large number of incompetent college professors teaching the computer courses, and ending with corporate...

  • RE: Where should the DBA Team exist?

    Actually, you might NOT disagree, depending on what PaulB meant. One could interpret what he said as meaning that his reference to "should be the DBA", means that...

  • RE: Convert Rows into Columns using ForEachLoop Container

    I thought I would show how you could have used the UNPIVOT & PIVOT functions, given that you were unable to do so. This is just another method,...

  • RE: Where should the DBA Team exist?

    In a previous job, I was a Server "Break/Fix" tech, and that meant performing backup monitoring (and changing backup tapes), monthly re-boots at oh-god hundred Sunday mornings, monitoring disk space...

  • RE: Change SQL Time

    Also, I would never verify anything on a server via Terminal Server. Log on locally directly on the server, or at least use Remote Desktop to do so....

  • RE: Migration of Tables with IDENTITY columns without using SSIS

    Well, to solve my problem, here are the steps I took, as the use of BCP simply wasn't available to me on either of the servers.

    1.) Script out the CREATE...

  • RE: columns as parameters in Reporting Services

    Just a thought, but perhaps you could consider having part of your query generate an interim table that contains one column that has ALL the searchable columns joined together into...

  • RE: Locking server

    What this query is doing is looking at various table names as selected from the database's metadata, and then checking a portion of the table name against what appears to...

  • RE: Export database into Excel

    There's absolutely no reason you can't use queries to take the information from one database and get it inserted in the other. HOWEVER, a couple of necessities first:

    Be absolutely...

  • RE: Bursting of a report and saving it.

    Burst ? I think you need to be a LOT more specific about exactly what you mean. While you agreed with one reply that simply substituted...

  • RE: Exclude Word List to filter SELECT results

    Thanks for the kind words - glad I could help.

    Something to keep in mind, however, is that in using a CROSS JOIN (see next paragraph), you get a cartesian product...

  • RE: VARCHAR datatype

    Interesting discussion. Also interesting that no one mentioned the potential inconvenience and/or performance hit of having to use RTRIM on a char field to avoid getting extra spaces...

  • RE: Exclude Word List to filter SELECT results

    Here ya go:

    DECLARE @LOCATION_TABLE TABLE(

    Location varchar(15)

    PRIMARY KEY(Location)

    )

    INSERT INTO @LOCATION_TABLE

    SELECT 'MyHouse' AS Location UNION ALL

    SELECT 'YourHouse' UNION ALL

    SELECT 'MyGarden'

    DECLARE @EXCLUDE_TABLE TABLE(

    Word varchar(15)

    PRIMARY KEY(Word)

    )

    INSERT INTO @EXCLUDE_TABLE

    SELECT 'Your' AS Word

    ;WITH NOT_WANTED AS (

    SELECT...

  • RE: Data migration

    Yes, and tall task is a bit of an understatement, as I just realized that the transfer time's I calculated would all be doubled, because as an intermediary, the original...

  • RE: Locking server

    Okay, so exactly HOW is Server1 running this script? Via Enterprise Manager? Query Analyzer? In some kind of application using VBScript, or within an MS Office...

Viewing 15 posts - 4,546 through 4,560 (of 4,820 total)