Forum Replies Created

Viewing 15 posts - 58,501 through 58,515 (of 59,048 total)

  • RE: MSDE Question

    I'm thinking... REFRESH, REFRESH, REFRESH again.

  • RE: Split a column into multiple columns and insert results into table

    Assuming that the column you are parsing is called "ParseThis" and your table name is called "yourtable", this will work PROVIDED that you always have all 4 parts...

     SELECT...

  • RE: option (KEEPFIXED PLAN) working in 2005??

    No, but I'm thinking that this is "Death by SQL" of the same magnitude as disabling the automatic recalculation of statistics.

  • RE: Float or decimal

    "Books Online" describes both FLOAT and REAL as follows:

    "Approximate number data types for use with floating point numeric data. Floating point data is approximate; not all values in the data...

  • RE: Best way to identify the first SAT of a month

    If your job only runs on Saturday, then you've done it the most efficient way.

  • RE: Copying files using T-SQL

    Carl, sometimes there's just no application to be had... SQL is it.

    Mark, the reason you are getting the error is that you must either have SA permissions or your DBA...

  • RE: Find missing numbers in sequential column

    Very cool, jratwork... I have a similar un-natural aversion to correlated subqueries and I had my doubts when I saw the "<" in the correlated subquery... but I just ran...

  • RE: Reg Help with DB2 query

    First, this isn't a DB2 forum and not all SQL's are created equal.  That, notwithstanding, you say "it didn't work"... if you got an error message, is sure would be...

  • RE: dynamic stored procedure question

    "Online AnonProfile" seems a bit paranoid as a "handle" to me ... whatever...

    This little ditty should help you in your quest for primary...

  • RE: check constraint???????

    You can't do this with a constraint... you'll need to use a trigger or, maybe, you can also try a "calculated column".

  • RE: Open an excel file automatically by using a bat file

    Can you run the following?

    EXEC Master.dbo.xp_CmdShell 'Dir C:\'

    If not, your SYSADMIN got the "religion of security" and disabled access to xp_CmdShell.

  • RE: creating stored procedure in master database

    I'm thinking that's part of the reason he wanted to put it in the Master database although, I agree, putting it in the master is not a good idea.  It...

  • RE: Transposing Information

    Ehlinger,

    As strange as it sounds, if the flat file is VERY consistant, you can actually use BCP or Bulk Insert to transpose the input from the flat file directly into...

  • RE: Received error when queried the linked server

    You may have set up the linked server properly but did you set it up with a login using sp_addlinkedsrvlogin ?

    That's required unless you allow anonymous logins and that should...

  • RE: ISNUMERIC() bug?

    >Jeff, can you give an example where 'a-f' are considered by ISNUMERIC to be convertable to a number?

    Sure Frank,

    There's others but these will do... only one out of a-f that...

Viewing 15 posts - 58,501 through 58,515 (of 59,048 total)