Forum Replies Created

Viewing 15 posts - 286 through 300 (of 347 total)

  • RE: What is the error?

    There is no column job_id located in msdb..sysdatabases. I think you might want to change that to sysjobs table if you are trying to find out the job name...

  • RE: Export Logins

    The best way to export logins is bcp out from master..syslogin to a text file and then go to that file to remove the line for

    sa, repl_subscriber and repl_publisher.

    Once you...

  • RE: HELP!! Installation questions

    It would be inconsistent for the time being, but going forward would be a good practice. We just got to break the bad habbit. I keep my log...

  • RE: Server name changed

    msdb database, I had to hack it by going into sysjobs and update the sysjobs so that it point to local or the new name. It not that bad...

  • RE: HELP!! Installation questions

    You could leave your current one the way they are and set up the correct path for the future databases. We did have a server that has different drive...

  • RE: HELP!! Installation questions

    I forgot to address the log and data problem.

    Once you detach the database you have to go to the database file for .mdf and .ldf and move it to the...

  • RE: HELP!! Installation questions

    you can not change the directory of an existing database. You would have to detach and re-attach those database to get move it to different folder. Because you...

  • RE: HELP!! Installation questions

    we typically set up our data seperate from our log.

    Start Enterprise Manager-> Server -> right click properties->database settings ->Default Data directory: D:\SQL\DATA

    Default Log Directory: E:\SQL\DATA

    everytime you...

  • RE: Server name changed

    It's been a while since we replace sql 7 but I think you have run set up for sql 7 again to get the server you rename to work. ...

  • RE: Running Query batches in stored procedure

    why do we have to go arround so much when you don't want that column, just do

    select a, b, c , d from tablez

    instead of

    select * from...

  • RE: dbo to add rolemember???

    I don't think the security team need to add or remove login. User could be removed from any database by database owner or security admin withing that database, but...

  • RE: Error when changing startup account

    the user that you want to change the sql service account need to be a user at a minimum at your local box.

    mom

  • RE: Best way to run a query, need help.

    In my opinion, only use cursor as the last resort because it takes more time and more resource.

    you could also parse out your update such as

    declare @a int, @i int

    set...

  • RE: dbo to add rolemember???

    You just need to be dbo to add user to a role.

    mom

  • RE: Intercepting Bulk Insert errors

    Have you try just to insert to a table with 1 column of identity and 1 column of data.

    Once you got it into the database you could parse and look...

Viewing 15 posts - 286 through 300 (of 347 total)