Forum Replies Created

Viewing 15 posts - 421 through 435 (of 518 total)

  • RE: Version of SP on Client Side

    You need to chech the timstamps of the dll's in your binn directory against microsofts list of file timestamps for SP2. There may be other ways to go about it,...

  • RE: Generalized database references

    Carl, In SQL, global search and replace for procs is a query useing the command replace run against the right sys table...

    Edited by - Scorpion_66 on...

  • RE: Calling a function from linked SQL Server

    The openquery method is what we use. Works fine.

  • RE: Problem importing AS400 generated text file

    This is another example of EBCDIC to ASCII conversions that has issues. We encounterd several cases of things like this. Write a BCP input file and strip the last character...

  • RE: Generalized database references

    You can do it by creating a linked server with an aliased name then write all your code against the aliased name.

    For example:

    In Development the server name is DEVSERVER

    Alias a...

  • RE: Profiler Performance Hit

    In the case of a few small traces rather than a large one, it is true that overall the load on the server will be greater. However, the data collections...

  • RE: datetime datatype question.

    I guess more people do the convert than I thought......may not be the best way, but looks like its the accepted way.....

  • RE: How To: Avoid Deadlocks

    With the select and the update in seperate statements, I believe its possible for two occurrances of this to grab the same row, and the last one to update the...

  • RE: standby not a recognized RESTORE option

    When you use standby, you should give it the undo file name. That will fix your problem.

  • RE: datetime datatype question.

    I convert my dates to a varchar(12) which drops the timestamp off, then back to a datetime for sorts, order by's, etc....

    Don't take this to be the best solution, but...

  • RE: very poor delete performance

    I agree with antares686. I believe the queries he suggested, which reduce the nesting, will help a great deal.

    However, 23 foreign keys is the problem. Why in the world are...

  • RE: Profiler Performance Hit

    Profiler does place a noticable measure of overhead on any server its run against. The more data and columns in the trace, the more of a load on the server....

  • RE: How To: Avoid Deadlocks

    It does not have to be in the where clause to lock the column. That was not the reason for suggesting that course, I don't believe.

    I believe it was suggested...

  • RE: Combining Data for ASCI layout

    I think Gregs answer would be the most efficient. Pad the insert queries to build a common structure. This could even accomodate the ASCII structure you need. Use a Key...

  • RE: SQL PROCEDURE QUESTION

    Why are you using a cursor to insert records into a table. If it were to be done with a set based operation, you could left join the table being...

Viewing 15 posts - 421 through 435 (of 518 total)