Viewing 15 posts - 1,111 through 1,125 (of 5,504 total)
NJ-DBA (8/21/2011)
August 21, 2011 at 8:05 am
Please have a look at the first link in my signature and post ready to use sample data together with your expected result.
For sure, there is a set based solution.
August 19, 2011 at 3:26 pm
Exactly the same results on my (test) instances (both on the same machine):
Microsoft SQL Server 2005 - 9.00.4060.00 (Intel X86) Developer Edition, (Build 2600: Service Pack 3)
Microsoft SQL...
August 19, 2011 at 10:19 am
sunny.tjk (8/17/2011)
Is there a way to figure out the space used by a table in the last month?
You'll need to be more precise what you're looking for.
"Table space used in...
August 17, 2011 at 11:40 am
Varchar without any length specification woud use a default of 30, which is oversize for the given task. Depending on the requirement how to display more than 24hrs (or 100hrs...
August 16, 2011 at 4:28 pm
something like this?
SELECT DATEADD(mi,yourColumn,'19000101')
August 16, 2011 at 4:07 pm
I'm not sure if I'd go that route and update the original BankDepositNumber. I'd rather either add another column to the original table or even a separate table that would...
August 16, 2011 at 4:02 pm
It seems like the index in stage is totally fragmented. This leads the query optimizer to the conclusion that the index (being good enough in test) is not good enough...
August 16, 2011 at 3:21 pm
Based on your description, the code does exactly what you're looking for: "two distinct query's and i want to insert the results into one temp table".
Separate INSERT statements will add...
August 16, 2011 at 3:04 pm
Please don't hijack a thread.
The issue you describe is not even related to the subject discussed in the original thread.
Ask your question using a new thread in the SSIS section....
August 16, 2011 at 7:13 am
Aiello DBA (8/16/2011)
Completo articulo para entender el waitresource y poder identificar de que objeto se trata.http://aiellodba.blogspot.com/2011/08/entendiendo-el-waitresource.html
Ich habe keine Ahnung, ob dieser Link einen Bezug zum Thema dieser Web-Seite hat. Auf...
August 16, 2011 at 7:07 am
sauraviit-689328 (8/14/2011)
August 15, 2011 at 1:12 am
To expand on Flo's solution, performance is usually much better when using the CROSS APPLY approach if there's the need to return values from different node levels.
SELECT
...
August 14, 2011 at 2:44 am
Sachin Nandanwar (8/14/2011)
Just because you define it as a "Best Practice" and it gives me an overhead in maintenance then surely I am better off in not using those...
August 14, 2011 at 2:32 am
kumar1 (8/12/2011)
@Kurt W. Zimmerman: You are obsoltely right.I have done similarly before but used waitfor delay option.
Thank...
August 12, 2011 at 3:34 pm
Viewing 15 posts - 1,111 through 1,125 (of 5,504 total)