Viewing 15 posts - 271 through 285 (of 440 total)
February 6, 2009 at 8:33 am
Hi
Do you have audit on Image field. I am curious to know what is the reson behind to this.
Thanks
Vijaya Kadiyala
February 6, 2009 at 8:32 am
Hi
Simulating "CONNECT BY" in SQL Server.
http://www.sqlteam.com/article/more-trees-hierarchies-in-sql
Thanks
Vijaya Kadiyala
February 6, 2009 at 8:30 am
Couple of things:
1) When you are inserting string value you need to enclose it in Single Quotes.
2) If the data has single quotes, then you need to replace them with...
February 6, 2009 at 8:28 am
what is the joing condition between these 3 tables?
Thanks
Vijaya Kadiyala
February 6, 2009 at 8:26 am
Hi
This is your Table:
ID Response
---------------------------------------------
1 Ques1=1&Ques2=6&Ques3=4&Ques4=5
2 ...
February 6, 2009 at 8:22 am
Hi
You need to use SCOPE_IDENTITY().
I belive you want to insert data first into Parent Table and then use the Identity value and insert it in Child table. Repeate the above...
February 5, 2009 at 12:32 pm
Hi
What is AVG size of the record?
What is the DefaultBufferSize set to?
What is the DefaultMaxBufferRows set to?
Mean while check out the below articles to modify the above attributes in order...
February 5, 2009 at 11:26 am
Hi
The problem with UNION is that it required sorting operation to eliminate duplicate row sets which is added cost for executing a statement, while UNION ALL return all rows without...
February 5, 2009 at 11:16 am
Its not too late..simple add one Identity column to have PK. this will make your life easier.
If you dont put PK now then its going to be too late in...
February 5, 2009 at 11:05 am
Hi
Not qute sue why you are making it so complex.
SELECT COUNT(*),type_desc FROM sys.objects
GROUP BY type_desc
use this query and copy the output to Excel sheet and do the cosmetic changes.
rather...
February 5, 2009 at 11:04 am
Hi
Check out the below which gives you detailed explanation of INSTEAD OF TRIGGER on View.
http://msdn.microsoft.com/en-us/magazine/cc164032.aspx
Thanks -- Vj
February 4, 2009 at 10:15 am
Hi
By looking at your table structure CustomerID is Primary Key. Not quite sure why do you want to have CustomoerID IS NULL Condition in the query.
Can you also tell...
February 4, 2009 at 10:12 am
Hi
Check out the below link
http://www.codeproject.com/KB/database/MovingSQLServer2005to2000.aspx
Thanks -- Vj
February 4, 2009 at 10:07 am
Hi
Are you getting this "low buffer memory error" on Oracle side?
Thanks -- Vj
February 4, 2009 at 10:03 am
Viewing 15 posts - 271 through 285 (of 440 total)