Forum Replies Created

Viewing 15 posts - 2,731 through 2,745 (of 2,897 total)

  • RE: Memorable Signatures

    How about:

    "Don't criticize someone until you've walked a mile in their shoes. Then, when you criticize them, you'll be a mile away and have their shoes "

  • RE: Consolidate multiple files

    Could you be a bit more specific about what you want to do ?

  • RE: Cannot resolve collation conflict for equal to operation

    You don't necessarily need the collate on both sides of the =

    If TableA is CollationA, and TableB is CollationB, you only need to set the collation for one table to...

  • RE: SP4

    I found this discussion about problems with SP4.  Seems to affect large queries running on servers with multiple processors.  I've installed SP4 on a test server, and a low usage...

  • RE: Growing Backupfile

    Sounds as though you're using "Append to Media" instead of "Overwrite Media".  Perhaps you can post your actual backup statement.

  • RE: Difference?

    As many have said in the past, posting some actual code examples goes a long way towards helping people understand your question.

    Data and DDL are good too when appropriate.

  • RE: How To capture File Growth for each user DB?

    Assuming you backup your databases daily (or at least regularly), then the database size history is stored in the backup tables.  Here's a script I wrote to look at backup statistics,...

  • RE: Cannot resolve collation conflict for equal to operation

    I'm not sure why just copying data would give you a problem, but if you're comparing data in 2 tables with different collation, then you need something like:

    select * from TableA ...

  • RE: Generate SQL script problem

    Sushila,  This may not apply to your problem of missing depenancies in views because I don't think you can create a view "View1" that references another view ("view2") if "view2" doesn't already exist...

  • RE: Sptore Procedure to Access and Update Tables Across Multiple MSSQL Servers

    Yup.  Linked Servers is probably what you want.  Then you can reference tables on other servers quite easily in your query.

    You can also use OPENROWSET, but it's much more...

  • RE: Generate SQL script problem

    Correct.   The same thing happens with SPs.  It's a big pain.

  • RE: Identify Ununsed Store Procedure

    Not that I know of.

    SQL Server is pretty skimpy when it comes to this kind of info.  When we migrated from the AS/400, the lack of information about object usage...

  • RE: Use DTS to send data to DB2

    It used to be a real pain to change the structure of files ("tables") on the AS/400. Then it got a bit easier, and if you needed to add a...

  • RE: Use DTS to send data to DB2

    Assuming that DB2 is another name for the native AS/400 environment, then you can't just change data types of files. What I would try first is use DTS to dump...

  • RE: Do We Need Paper?

    Talking about me again !?

Viewing 15 posts - 2,731 through 2,745 (of 2,897 total)