Forum Replies Created

Viewing 15 posts - 16 through 30 (of 63 total)

  • RE: Can Wives Shorten Work Hours?

    >> I know I've often seen younger people try to get ahead at the expense of those with families because they're willing to work more.

  • RE: Login failed for user ''''SA'''' ?

    By chance is your database instance set up for Windows Only authentication (instead of Mixed)?

  • RE: how can i c password

    The XOR encoding approach might stop a casual thief (it's certainly better than nothing) but the algorithm is way too easy to crack.   Indeed a hacker will probably LOOK for a simple XOR approach...

  • RE: Data migration

    >> I want to migrate MS Access database to SQL server 2000 database. Please provide the script for the same.

    Hey Vilas,

    You totally hijacked the original poster's...

  • RE: Data migration

    >>  For example if there are versions 3.1 3.2 3.3 already in production

    Excuse my total ignorance, but why have multiple versions in Production at once? 

    I'd prefer a simpler approach, with...

  • RE: Procedure DECRYPT2K question

    I don't have the answer, but I do have a suggestion.  Don't use encrypted stored procedures.  They just create unnecessary headaches and don't really buy you added security.  The logic to de-encrypt...

  • RE: Checking SQL Server UPTIME

    You might be able to write some logic using "DATEPART" to give you the individual components...

     

     

  • RE: Distribution Database Size not coming down

    >> Too much of activity on the publisher which coused a delay in updating the subscriber and hence the distribution database kept growing since the log reader continued doing what...

  • RE: Distribution Database Size not coming down

    Did you check the trunc. log on checkpt (SQL 7) or Recovery Model (SQL 2000) for the "distribution" DB?  Should be set to "truncate" or "Simple" model.

    You didn't say what...

  • RE: How to avoid those empty result sets ?

    Spent a while trying to figure out what the heck you were talking about with  "empty result sets", but now I think I know.  Try adding this magical little line somewhere near...

  • RE: problem calling a remote sp from a trigger

    Well, since the trigger works against the production server but fails against the development server, I'd be curious if there's something different about each environment and/or the version of SQL...

  • RE: How to get notification when one node fails to another?

    We monitor cluster failover using the SQL errorlog info--using a technique like someone described above--basically by running a process that reads in and checks the SQL error log every 15 minutes or so.

    In...

  • RE: Using a Linked Server to connect to an Excel File

    There's an example of a linked server connection to Excel in SQL Books Online under "sp_addlinkedsrvlogin".

    E. Connects a specific login to an Excel spreadsheet (the linked server)

    This...

  • RE: DTS job in SQL Agent fails

    Yes indeed--I ran into similar problems scheduling DTS packages in the past.   Invariably stuff works great when run interactively, but fails miserably when scheduled under the SQL Agent because of permission...

  • RE: OPENROWSET & OPENQUERY

    SQL Books Online will tell you almost anything you ever wanted to know about these topics (but were afraid to ask).

Viewing 15 posts - 16 through 30 (of 63 total)