Viewing 15 posts - 331 through 345 (of 566 total)
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...
January 4, 2008 at 8:18 am
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()
...
January 4, 2008 at 8:00 am
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...
January 4, 2008 at 7:50 am
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...
January 4, 2008 at 7:43 am
Have you checked to make sure the file itself isn't marked read-only?
January 3, 2008 at 2:16 pm
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,...
January 3, 2008 at 8:34 am
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)
January 3, 2008 at 7:44 am
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
January 2, 2008 at 11:12 am
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?
December 21, 2007 at 12:22 pm
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...
December 21, 2007 at 12:18 pm
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
December 21, 2007 at 12:06 pm
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...
December 21, 2007 at 12:02 pm
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...
December 21, 2007 at 11:57 am
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...
December 21, 2007 at 9:59 am
K - just let them know you need an A record in DNS for your new virtual server (i.e. MyNewSQLServerName).
Have a good Holiday 🙂
December 21, 2007 at 9:02 am
Viewing 15 posts - 331 through 345 (of 566 total)