Forum Replies Created

Viewing 15 posts - 31 through 45 (of 219 total)

  • RE: OS Restore vs SQL Restore - Which is better?

    You can’t copy the LDF file while the DB is online. You must take the database into offline and copy it to the tape....

  • RE: Star Or Snowflake????

    Oh this is what i am looking for. Thanks Brian

  • RE: Reporting Services - typical Microsoft

    You can use XML Editor instead of Visual studio

  • RE: SQL Agent and Linked Server

    You can do it by configuring master-target server.

  • RE: How to send SP results to CSV file in DTS?

    I guess Steve is refereeing the Guest login ID in the msdb database. There is no way you can remove the public role. Public users access the DTS packages...

  • RE: How to send SP results to CSV file in DTS?

    By default public member can view/create/delete the DTS packages unless you deny the access to the procedures sp_enum_dtspackages, sp_add_dtspackage in the msdb Database. Only DBOs and sysadmins can execute...

  • RE: large table

    Depends on how big it is? Had a similar situation with one of my old client, table size is 30+GB. If you see any perf problems I would suggest take...

  • RE: Need help - Error: 823, Severity: 24, State: 11

    The file may be damaged or could be a disk problem. You are very lucky if only tempdb is on it, either you can move it to other drive or...

  • RE: SQL Mail

    Yes you can specify multiple queries by separating with (;), but you’ll get the results merged in one file

  • RE: Linked Servers

    It's little tricky, for the regular INSERT/DELETE/UPDATE you can directly refer Select * from Linkedserver_Name.DB_Name.Usercontext.objects_Name. Whereas to drop the object you must use

    Linkedserver_Name.DB_Name.DBO.sp_executesql N (‘DROP table <tabl_Name>’)

    I figured it...

  • RE: SQL Mail

    As Linda said, BCP is also another option in place of DTS

  • RE: SQL Mail

    No direct way, but you can setup a DTS pack to generate a .xls file by specifying the same query and let sqlmail pick the file and email.

    EXEC master..xp_sendmail

    ...

  • RE: Log shipping multiple databases

    What’s your main goal here, If you just want to ship the data bases I would just backup the databases and restored on other server and take care the logins...

  • RE: Copy users and roles

    There is no way you can script the users and roles in the EM, unless you come up with a custom scripts. If the users are quiet a few I...

  • RE: Best way to NOT to RUN a job on a list of dates

    1) Disable the job

    2) Import the dates into a table

    3) Develop a routine to call the job in a SP by checking the dates.

Viewing 15 posts - 31 through 45 (of 219 total)