Forum Replies Created

Viewing 15 posts - 1 through 15 (of 2,037 total)

  • RE: Table Index Tool

    Yes, but not used yet. As far as I know, the performance dashboard is more useful for production administration. I'm not sure if it will give you same detailed information...

  • RE: Table Index Tool

    Hi

    I'd start with the Database Engine Tuning Advisor.

    SQL Server Management Studio -> Menu -> Database Engine Tuning Advisor.

    But review and refine the index recommendations, it often shows too many "missing"...

  • RE: How to compress an excel file (Destination) prior to an email send task?

    Hi

    I'm not the SSIS pro, but you could a "Execute Process Task" use a tool (like WinZip) that supports command line arguments to compress your Excel file.

    Greets

    Flo

  • RE: Huge varbinary or image to hex string

    Hi

    If you need to convert this size of binary data I'd either try to do this in a client application (c#/java/c++/...) or consider to use a SQL CLR function.

    Just tried...

  • RE: Using Notification Services on a SQL 2008 server

    Hi Mary Ann

    Yes. You need to configure Service Broker to provide the notification queue. Shown as a short SQL Statement in Enabling Query Notifications (ADO.NET). After that ensure that your...

  • RE: Script Issue with insert

    SQL Server parser validates the existence of all database objects (tables, columns, procedures, ...) before the execution starts. Even if you encapsulate not existing objects into an IF-ELSE block, or...

  • RE: Script Issue with insert

    Hi

    I'd try to avoid the dynamic SQL and move the DML statements into another batch, where IsActive is available.

    -- ...

    -- New upgrade script will be

    --==========

    IF OBJECT_ID('dbo.TestA') IS NULL

    BEGIN

    ...

  • RE: rollback the transaction created in sql server from visual basic

    Hi Sridhar

    Sridhar-137443 (9/12/2011)


    We are using the Classic Visual Basic 6.0

    Ugh... I'll do my best but it's more than one decade since my last VB6 attempts.

    I am not sure how we...

  • RE: Running out of memory

    Hi

    Don't configure SQL Servers max memory allocation for maximum (or higher) memory of your box. If you have 24GB physical memory you should configure SQL Server for a maximum of...

  • RE: rollback the transaction created in sql server from visual basic

    Hi Sridhar

    Sridhar-137443 (9/12/2011)


    The insert statement is the only one inside the stored procedure.

    You got a procedure that does nothing but one INSERT statement and takes more than 30 seconds? You...

  • RE: Need help on a select statement

    Hi

    A VIEW doesn't need to return all columns of your base tables. If you create a view that returns those 20 columns which are equal you will be able to...

  • RE: making seperate table if row size increase?

    Hi

    Yes, NVARCHAR(MAX) is an option. However, in my opinion it should only be used if data are really large and/or rarely needed. When rarely needed I'd suggest to set the...

  • RE: How to ensure a job only runs for a set duration?

    Hi

    As ps. suggested, if your database consists of multiple data files, use parallel index maintenance jobs. Can you use a larger maintenance window on weekend?

    Do you run a SQL Server...

  • RE: Currency conversion calculation

    Hi

    yingchai (9/11/2011)


    It does not update the currency in the CURRENCY column from foreign currency to local currency sign.

    Huh? ColdCoffee's is correct in my opinion. The result returns all data of...

  • RE: Need help on a select statement

    Hi

    Since all your facility tables have the same structure, I would try to centralize your query logic. If you need this UNION ALL only in one script/procedure, I'd use a...

Viewing 15 posts - 1 through 15 (of 2,037 total)