Forum Replies Created

Viewing 15 posts - 331 through 345 (of 566 total)

  • RE: SQLServer 2005 Log/Data Files

    It would be prudent to spend some time and forecast future growth, account for partitions, file groups, etc. The idea is to make the data file(s) large enough up front...

  • RE: Script to remove old (.bak) files?

    You could also use an SSIS script task -

    Option Strict Off

    Imports System

    Imports System.Data

    Imports System.Math

    Imports System.IO

    Imports Microsoft.SqlServer.Dts.Runtime

    Public Class ScriptMain

    Public Sub Main()

    ...

  • RE: Long running agent jobs

    I've used this method since 2K. Updated recently to use database mail and format a nice HTML table 🙂 Just need to change the parameters for sp_send_dbmail.

    I sometimes have problems...

  • RE: SQL 2005 MSDN Subscription

    Here's Microsoft's take -

    http://msdn2.microsoft.com/en-us/subscriptions/aa948867.aspx

    I suppose it depends on the type of subscription, i.e. volume license vs. retail. I've never had problems using MSDN versions of SQL 2005 Standard/Enterprise under...

  • RE: Not able to Attach

    Have you checked to make sure the file itself isn't marked read-only?

  • RE: ROLLING BACK A SQL 2005 DB to SQL 2000

    SQL Server 2005 supports 70, 80 and 90 compatibility modes. Please note that when you attach an 80 database from SQL 2000 to SQL 2005 it upgrades the system tables,...

  • RE: SP3 for SQL Server 2005

    Build 09.00.3215 (cumulative update) is the most recent. For a list of builds that were released after SP2 was released (this page is maintained regularly)

    http://support.microsoft.com/kb/937137

  • RE: How to set default location of datafiles

    USE [master]

    GO

    EXEC xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'Software\Microsoft\MSSQLServer\MSSQLServer', N'DefaultData', REG_SZ, N'D:\MSSQL.1\MSSQL\DATA'

    GO

    EXEC xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'Software\Microsoft\MSSQLServer\MSSQLServer', N'DefaultLog', REG_SZ, N'D:\MSSQL.1\MSSQL\LOG'

    GO

  • RE: Linked Servers with SQL 2005 SP2

    Do you see failed logons for "NT AUTHORITY\ANONYMOUS LOGON" on the SSAS server? Does the linked server happen to work in an RDP session on the SQL Server?

  • RE: Activate Reporting services by SQL jobs

    If I'm understanding you correctly, your just looking for a way to manage a SSRS subscription from another job. You can create a subscription in SSRS, disable the job it...

  • RE: ViewServerState Property

    You can wrap this in a cursor using dynamic SQL to make it easier for the 75 + logins 🙂

    USE master

    GO

    GRANT VIEW SERVER STATE TO [SomeUserAccount]

    GO

  • RE: Would it make sence to install SSIS-service off server ?

    You need to enable delegation for the host running the SSIS service for kerberos authentication to work correctly. Also, verify SPN(s), etc. For more information, refer to the following MS...

  • RE: Help - SSIS Job Cannot Access Excel File

    Looks like there is a lock on the file (on the server, right-click my computer, manager, system tools, shared folders, open files). Also, have you granted permissions to the share...

  • RE: Cluster Install Help needed

    Just for clarification - you don't create an A record for the SQL instance - just the virtual server name - if this is an active/active there should only be...

  • RE: Cluster Install Help needed

    K - just let them know you need an A record in DNS for your new virtual server (i.e. MyNewSQLServerName).

    Have a good Holiday 🙂

Viewing 15 posts - 331 through 345 (of 566 total)