Forum Replies Created

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

  • 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...

  • RE: Data migration

    I hate to rain on anyone's parade, but what I'm hearing is that there's no direct connection between the two servers, and there's an expectation of zero down-time. ...

  • RE: combining multiple rows into one

    Perhaps Zypsy just needs a little of what I'll call "solution motivation". It seems fairly simple that given the existing data structure, the proposed analysis involving what the...

  • RE: Help with SQL query

    Kagool,

    Thanks for clarifying. You just need to state the entire problem in your initial post, as the design of many solutions is critically dependent on the initial problem...

  • RE: Help with SQL query

    Sounds like the OP failed to initially disclose criteria that are critical to rendering a proper query. He now introduces the concept of the user replying to a...

  • RE: Help With SQL Update Query

    You might want to be a bit more specific about exactly what you want to convert to Access, but that query could be used un-changed as a pass-through query in...

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