Viewing 15 posts - 556 through 570 (of 728 total)
Interestingly I created the table on second table from same script as in main server. So i don't think there is any kind of column data length mismatch issue.
April 21, 2012 at 1:45 am
Got it. Thanks experts. There was one new column which has unnecessary kept me occupied. I should have tested that in first place. however there is new error "String data,...
April 19, 2012 at 11:05 am
Thanks for clearing my point Grant. That certainly says that in my scenario, "with recompile" option is required. However in this case how can I stop SQL to create efficient...
April 13, 2012 at 4:47 am
Hi Grant. As per my understanding the 'with recompile' option to be used only when there are different range of parameters passed to the procedure. As long as there are...
April 11, 2012 at 5:49 am
Thanks a lot Gail. This is exactly what I was looking for. Thanks one again for sharing this link.
April 9, 2012 at 6:06 am
I'ev checked a lots of them already but don't understand which values to use for checking memory pressure while running my code.
April 9, 2012 at 3:12 am
Thanks Anthony for pointing that out. I closely checked and founf that there were few files having same name for both databases and that's why it was giving some value...
April 6, 2012 at 2:58 am
Exactly and thats what my point is...
USE DB1
SELECT * FROM DB1.dbo.Table1
and
USE DB2
SELECT * FROM DB1.dbo.Table1
gives same result [as they both refer to smae table in DB1]. Same way the following...
April 5, 2012 at 7:21 am
Seems I missed that condition. Thanks for the amendmend Andy.
Cheers. 🙂
April 5, 2012 at 3:36 am
SQLKnowItAll (4/4/2012)
April 5, 2012 at 3:16 am
For Dev environment, it's better to have any audat extra column having host_name as default value. I am using it at my environment and it's working fine for me. Even...
April 3, 2012 at 4:54 am
Here are few useful links:
http://technet.microsoft.com/en-US/library/ms345368(v=SQL.90).aspx
http://technet.microsoft.com/en-US/library/ms175527(v=sql.90).aspx
April 3, 2012 at 1:31 am
Check if this helps.
select * from #table1
where (ItemID like 'LGE%' or ItemID like 'SAM%' OR ItemID like 'HTC%')
and (ItemID like '%-S' or ItemID like '%-R' or ItemID like '%-IR')
and...
April 3, 2012 at 1:22 am
Sorry for the delayed response. There seems to be issue in the input file.
April 2, 2012 at 4:23 am
Viewing 15 posts - 556 through 570 (of 728 total)