Forum Replies Created

Viewing 15 posts - 4,816 through 4,830 (of 7,429 total)

  • RE: SQL Server 7.0 SP3 Question...

    In addition, boxes behave differently no matter how well you test with similar everything. Little power fluctuations or unknown process running can mean a locked file hendering the upgrade or...

  • RE: Retrieve specific number of records from a table

    Sorry, I do not have an example I can think of off hand to show a difference. That is why I stated 'may be' and not will be. My opinion...

  • RE: Child - Parent issue

    o you have a FK constraint in place? If so you may need to drop it until you clean up then add back.

    "Don't roll your eyes at me. I will...

  • RE: View Eventlog entries from SQL Analyzer

    It is xp_eventlog.

    To view the application log do xp_eventlog 'Application'.

    These works in 7 but not 2000. xp_eventlog is there but have not found the parameters yet.

    Edited by - antares686 on...

  • RE: Performance Puzzle

    May even be the transaction log needing to grow and while doing so you are getting waits. Make sure file growth is large enough to keep delays to a minimum.

    "Don't...

  • RE: Problems with Service Pack 2

    If the problem is itermittent then may be a piece of code causing it. Try running profiler when the server is not in this condition until you catch when it...

  • RE: Job Schedules Mysterioiusly Disabled

    I am not sure exactly what may be happening but there are several things that can do this. I am betting however the old schedule may have been set to...

  • RE: Mobile laptop users and replication

    I haven't done this type of connection but the principal is like so. If the replication is interupted in mid point all changes will be rolled back. Only on successful...

  • RE: Merge conflict resolver sample in VB

    What is the name of the example and I can see if I can translate to VB?

    "Don't roll your eyes at me. I will tape them in place." (Teacher on...

  • RE: DBCC SHOWCONTIG

    How are you running as both OSQL and ISQL qork fine for me. They just have a horrible effect on the wrap of the data making it harder to read...

  • RE: replace function

    If you are needing to replace 2 single quotes then just run the replace you already use and it will double to 4 which is the correct thing to do....

  • RE: Retrieve Records from another database using View

    Doesn't really matter, if tying to other data in DB1 it is best to use a view. However when using aview you are still connecting to DB2 you just...

  • RE: Problem in Trigger

    Not sure how your trigger looks but I suspect you have an issue with how to hadle multiple updated rows.

    Should depending on other things and considering if you are inserting...

  • RE: Pause for a Minute

    Hey Steve, in your discussion you mention the need to wait because of the dialog that appears when shutting down a service. Many people don't realize however that a service...

  • RE: Insert 300 records in 1 transaction/round-trip to

    I agree with the number guy. Just submit to an SP as a VARCHAR comma delimited. Then you can use CHARINDEX to seperate and insert using a WHILE loop to...

Viewing 15 posts - 4,816 through 4,830 (of 7,429 total)