Forum Replies Created

Viewing 15 posts - 181 through 195 (of 285 total)

  • RE: SQL Server 2000 to MySql server

    You can also slug it out with BCP, unload from SS and BCP back into MySS.

    This avoids any security concerns if you don't want to /can't add a linked server.

    Also,...

  • RE: Problems after SA password change

    DTS is notoriously buggy. Make sure you have the latest service pack installed, store your packages locally and don't password protect them.

    Those are our rules of thumb to avoid...

  • RE: Cross database permissions

    Another possiblity is using "instead of" triggers to direct all updates/inserts/deletes to the new data base. Your existing app continues to work unchanged. The maintenance shifts to the...

  • RE: SQL Agent

    Do the jobs all need to run at once? Could you have them single thread and correct the problem? I have a series of jobs where the last...

  • RE: Suspect status

    I would verify your data base. Resetting the "suspect" status bit did only that: turned off the error. Use DBCC to verify your data base is still fully...

  • RE: msde problems connecting to database

    Ya --- TCP/IP = no problem. what was your resolution?

  • RE: HELP! - Duplicate Foreign Key References

    In many ways, SQL Server is kinda stupid. Or is it that it just expects you to know what you're doing? Seems to me another index that duplicates...

  • RE: Max length of data in a column

    information_schema will show you the defined length but since you already know that, use steve's answer to find the actual value length stored therein.

  • RE: win2k vs winxp for ss2k development

    I use both and prefer XP over 2000. More features, more stability. I have Xp at work and 2K at home. Comparable machines.

    I will upgrade to XP...

  • RE: How to Add header & trailer info into Text File

    quote:


    Hi, All

    how can I put header & Trailer info after or before I pull the data? Is there any DTS function or...

  • RE: Stored proc permissions

    Just remove it!

    Seriously: By default SQL Server only checks permissions at the Stored proc level. If you can execute the proc, SQL Server do the higher overhead of checking...

  • RE: Is the reserved word list accessible in SQL2K

    There's not a function available without rolling your own anyway so take the word list above and create a simple table that accepts your words as input.

    You also can use...

  • RE: MCDBA, MCSD, MCT, A+ Looking for good opportunity

    have you tried monster.com and hotjobs.com? I would also look for a recruiter in your area(?) to help with placement. If you have experience, you should be able...

  • RE: Connecting to Web Server

    Conventionally, we set up a SQL Server ID and use it for connection. The ID assigned has access only to the stored procs necessary for the application. It...

  • RE: UpgraSQL 7 to 2000 - any replication implications?

    can you tell us if SS2K is the subscriber or the publisher? if SS2K is the subscriber, no problems at all. You can accept the updates and upward...

Viewing 15 posts - 181 through 195 (of 285 total)