Viewing 15 posts - 451 through 465 (of 717 total)
Did you get this problem resolved?
If not, can you provide us with the table structures so we can try to help?
September 29, 2010 at 10:13 pm
Lucky9 (9/29/2010)
Thanks all for the quick response....
Have you had a chance to test them?
If so, do they return the correct results? Was one of them faster than the others?...
September 29, 2010 at 10:11 pm
hrc (9/29/2010)
You right. Learned about filestreams as late as yesterday, but alas, I cannot use it as the customers heavily rely on SQL2005 and streams is a 2008 thing.
You did...
September 29, 2010 at 10:05 pm
iqtedar (9/29/2010)
i) Performance- how exactly would upgrading to sql 2008 help in improving the performance.
I don't have a list of improvements, but I have seen a number myself. 2008 R2...
September 29, 2010 at 9:57 pm
Thanks for letting us know the queries we provided helped.
September 29, 2010 at 9:54 pm
I think you need to check the answer key for this question. It lists "Column references can pull data from multiple rows." as one of the options you have to...
September 29, 2010 at 9:52 pm
Give this a try:
WITH CTE AS (SELECT
S_NO,
...
September 29, 2010 at 12:03 am
Here is an alternate version that doesn't use as many CTEs, opting for correlated sub-queries instead, and from the execution plan should run faster while still returning the same results:
I...
September 28, 2010 at 11:35 pm
Well since you included sample/test data that almost worked, and had a almost complete explanation of what you wanted I think I was able to make a query to do...
September 28, 2010 at 11:18 pm
Lucky9 (9/28/2010)
Insert into Patient Values(3,'jjj','678912345469')
This insert fails because the data is longer than you have allowed in your table...
Could someone please help me with the query , I have to...
September 28, 2010 at 10:45 pm
I agree, nice question, but it would have been even better with a fourth option: 1-Boston;2-New Delhi
Without that option it was really a test of transactions, not of IDENTITY....
September 28, 2010 at 10:23 pm
Your welcome, and thanks for letting me know it worked for you.
September 28, 2010 at 2:50 pm
Your welcome, thanks for letting us know that worked for you.
September 28, 2010 at 11:41 am
It sounds to me like the best fit for your problem would be to use FILESTREAM storage for your VARBINARY(MAX) field. You might want to look that up in BOL.
September 28, 2010 at 9:46 am
Digs (9/28/2010)
September 28, 2010 at 9:44 am
Viewing 15 posts - 451 through 465 (of 717 total)