Forum Replies Created

Viewing 15 posts - 61 through 75 (of 295 total)

  • RE: Running successive jobs on SQL Server 2005

    Why not create one job with all the steps calling next job on success and just run this one job from the command prompt.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: SNAPSHOT Replication Preventing Log Truncation on Full RecoveryModel

    See =http://www.sqlserverspecialists.co.uk/blog/_archives/2009/5/5/4175469.html

    You may have the same issue.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: 1 SQL Server 100 satellite databases

    Sorry for the delayed response, you can use SQL 2008 central management server to manage SQL 2005 servers.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Using SSIS to zip files and email the zipped files

    I usually run jobs using the SA account, and ensure that this service account has permissions on all the folders and is also an account that has permissions to send...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Can I have SQL 2008 as a DR of SQL 2005?

    Once upgraded to 2008 you cannot go back so if you have to failover to DR you will be on SQL 2008. If you have tested that you application works...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: 1 SQL Server 100 satellite databases

    Why not use Central Management Servers with the SQL 2008 Management Studio and look into using Policy Based Management.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Inserting value for identity column in a temporary table

    Create Table #temp

    (RowID int identity(1,1) not null,

    MyID int not null,

    MyName varchar(50) not null

    )

    Insert into #temp (RowID, MyID, MyName)

    Select 1, 'Name'

    Should read Insert into #temp (MyID, MyName) as you have listed...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: PowerPivot

    Like you I have seen a demo of PowerPivot and was impressed by what it can do, but I find it a little scary. Its very easy to design a...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Rebuilding the master in a cluster, strange error message.

    We had a problem with setting the collation when building a SQL 2008 cluster, the solution for us was to slipstream service pack 1 into the installation file and then...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: SSIS Error Message HELP!

    SSIS is not cluster aware so in a clustered environment, you are better storing the package in msdb, as the file system from the 1st node might not be seen...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Backup error

    Users only need to be members of the fixed role db_backupoperator to be able to take backups, they do not need to be system administrators, as mentioned by Sqlfrenzy.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: How to change the Colour

    Add an expression to the color field.

    Example:-

    =iif(Dataset!field.Value<2,"Red","Black")

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: email in SSRS sql server 2008

    Why not just do a query or Stored Proc that pulls out the records you want and just schedule another email from reporting services to send to the email addresses...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: SCREW MICROSOFT !!!

    See http://msdn.microsoft.com/en-us/library/ms141209.aspx you will need to use the 32 bit drivers. Not nice, but there you have it.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Frustration on remote connection to SQL Server

    You could try adding an alias to the server in SQL Server configuration manager, that sometimes works. Another thing that I've seen work is to have an actual mapping to...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

Viewing 15 posts - 61 through 75 (of 295 total)