Viewing 7 posts - 1,411 through 1,417 (of 1,417 total)
Rafal S. created a script to get the job done.
See this link: http://www.sqlservercentral.com/scripts/Miscellaneous/62115/
April 14, 2008 at 3:36 am
Sorry, my mistake...
In SSMS you open the query. There you have to right click the query and then choose "analyse query in DTA"
April 4, 2008 at 6:25 am
Hi Bob,
Assuming there will be only one value in eacht column (per task_ID) you can use it with the GROUP BY clause.
The query will be like this:
SELECT TASK_ID, MAX(APPL_ID), MAX(QTIME),...
April 2, 2008 at 5:26 am
Hi,
You have to open the query in Management Server. From there you can select option "Database Engine Tuning Advisor" from the menu "Tools". This will pars the query to the...
April 2, 2008 at 3:37 am
Hi,
I quess you should use the UNION for this.
SELECT Column1, Column2 FROM Table1 WHERE Column1='cat' OR Column2='cat'
UNION ALL
SELECT Column1, Column2 FROM Table2 WHERE Column1='cat' OR Column2='cat'
UNION ALL
SELECT Column1, Column2 FROM...
March 28, 2008 at 4:08 am
Hi again,
On this website http://msdn2.microsoft.com/en-us/library/ms130828.aspx is a better explanation on what to use (and when to use it).
March 28, 2008 at 3:46 am
Hi,
SQLOLEDB is the best way to go.
On the MSDN website http://msdn2.microsoft.com/en-us/library/ms130978.aspx Microsoft states the following:
"If you are developing a new application it is recommended that you consider using ADO.NET and...
March 28, 2008 at 3:33 am
Viewing 7 posts - 1,411 through 1,417 (of 1,417 total)