Viewing 15 posts - 1 through 15 (of 2,037 total)
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...
February 10, 2012 at 8:15 am
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"...
February 10, 2012 at 7:11 am
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
February 2, 2012 at 11:26 am
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...
February 2, 2012 at 11:19 am
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...
September 14, 2011 at 12:37 pm
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...
September 14, 2011 at 7:57 am
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
...
September 13, 2011 at 11:23 am
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...
September 13, 2011 at 2:15 am
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...
September 12, 2011 at 1:08 pm
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...
September 12, 2011 at 12:50 pm
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...
September 12, 2011 at 5:05 am
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...
September 12, 2011 at 4:58 am
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...
September 11, 2011 at 1:10 pm
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...
September 11, 2011 at 12:51 pm
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...
September 11, 2011 at 12:33 pm
Viewing 15 posts - 1 through 15 (of 2,037 total)