Viewing 15 posts - 481 through 495 (of 521 total)
I don't think the data is the issue.
And I dont like the idea of flushing the data out. It "might" solve this issue, but it doesn't help in identifying the...
November 13, 2007 at 3:26 am
Hello vinuraj,
these are system tables.
If you enable logging of DTS packages to SQL Server,
the logs will be stored in these two tables.
The table does grow, but this specific data set...
November 13, 2007 at 3:15 am
Hi Peter,
Could you please elaborate a little more on what you are trying to show me?
I cannot use a collation for the datetime column that I want to sort.
I have...
November 13, 2007 at 2:32 am
If I understand this issue correctly, I strongly suggest you simply create views.
With a view on the table you can translate the column names AND translate the codes in one...
October 28, 2007 at 1:46 pm
I just do not understand how this should result in one row.
Table A
Row1: ColA = 1
Row2: ColA = 2
Table B
Row1: ColB = 1
Row2: ColB = 2
Row3: ColB = 3
SELECT...
October 25, 2007 at 5:26 am
Can someone please explain this question to me?
Are we talking about tables with each one having only 1 row?
October 25, 2007 at 1:16 am
Hi Andy,
thanks for this nice article.
Just as additional information, a link to BOL which explains when views are updatable and when not.
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/aecc2f73-2ab5-4db9-b1e6-2f9e3c601fb9.htm
October 25, 2007 at 1:08 am
Or use a CTE as described here:
http://www.sqlservercentral.com/Forums/Topic412364-145-1.aspx#bm412471
October 19, 2007 at 5:11 am
If you are crossing DBs just within the server, you might also want to think about using different schemas instead of different DBs. You can then split the data accross...
October 19, 2007 at 1:36 am
I think Manoj wants a constant. Not a parameter.
October 19, 2007 at 12:54 am
Is this something for you?
CREATE VIEW dbo.MyView AS
WITH MyCTE AS (
SELECT CAST('20070101' AS datetime) DateConstant
...
October 18, 2007 at 12:22 pm
Btw: OPTION (FORCE ORDER) would give you a plan that evaluates the CTE first, but that also affects the plan for the query inside the CTE I assume. So this...
October 18, 2007 at 9:00 am
Actually I think it is clear for me now.
As mentioned before it is the task of the query optimizer to play around with the order of execution based on...
October 18, 2007 at 8:49 am
Viewing 15 posts - 481 through 495 (of 521 total)