Forum Replies Created

Viewing 15 posts - 181 through 195 (of 206 total)

  • RE: Internal architecture of SQL SERVER

    I would add "Professional SQL Server 2008 Internals and Troubleshooting" to the list alongside Kalens book, I've been reading through it over the last few weeks and it is excellent.

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: index defragmentation

    If you are looking for a defrag script then I would recommend Michelle Ufford's at [/url] it does anything you could ever need.

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: Connection String for Network SQL Server

    Definitely follow Toby's advice in the first instance, if this does not work then can you tell us a little bit more about the installation process please?

    Is this a named...

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: Mirroring and replication difference

    There are lot of differences between the two, but to help I need to better understand what replication topology were you thinking of and how were you thinking of using...

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: CDOSys and query attachments

    Hi Arif,

    You're correct in that xp_Sendmail does have quite a few dependencies, I've not used CDOSYS before and thought that xp_Sendmail might be a viable alternative for you.

    Rich

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: General Network Error accessing DTS Package

    Are these DTS packages stored in the file system or in SQL Server itself?

    If it's in SQL Server it might be worth running DBCC CHECKDB on the MSDB database.

    Do you...

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: CDOSys and query attachments

    Have you tried using xp_Sendmail?

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: Auto Generating Scripts in SQL Server 2005

    Shouldn't you be trying to extract the code from your source control system rather than the database?

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: Importing Mixed Data from Excel Worksheet.

    I think you need to change the AddressNo attribute from FLOAT to VARCHAR .

    This should fix your problem.

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: SQL agent job running SSIS package (command line)

    Did you type this in, or was this generated by the "Set values" tab in the step of the job?

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: SQL Service Manager v8 error 1068

    This sounds like your error to me: kb 307288

    hth

    Rich

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: SSIS Packages and SQL Agent

    Look into setting up a proxy account for SSIS this should help fix your problem. It will allow you to run the SSIS package under a different credential. A 5...

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: Openrowset to select and Insert Millions of records

    I believe it will be one implicit transaction. To be honest I would consider using SSIS for this kind of work for the kinds of voulme you are talking about.

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: SQL Query UNION question

    It looks like you want to sum the results of your unioned query try something like this:

    SELECT [State], SUM(Field1) [Field1], SUM(Total) [Total]

    FROM

    (select

    state,

    count(*) [Field1],

    0 as total

    from tAccount

    AND datestamp >=...

    Hope this helps,
    Rich

    [p]
    [/p]

  • RE: My Approach to Writing for SQLServerCentral

    A directors cut

    I'm not sure if you can have a "bloopers" section in a written article, it would be an interesting challenge!

    Maybe not in the article itself, but having a...

    Hope this helps,
    Rich

    [p]
    [/p]

Viewing 15 posts - 181 through 195 (of 206 total)