Viewing 15 posts - 1,036 through 1,050 (of 1,479 total)
You do it the exact same way that you pass a parameter to a stored procedure from a batch. The fact that you invoke the stored procedure from a...
April 10, 2009 at 1:52 am
SQL Server doesn’t keep this kind of information. If you need to know when data in table was modified, you’ll need to create you own mechanism. You can...
April 10, 2009 at 12:03 am
You can use NULL as default value for all parameters and then use case in the update statement. Your set clause should look like this:
…SET suppid = CASE WHEN...
April 7, 2009 at 8:25 am
I once started working in a place and also noticed that there are few indexes that had the same structure but different names. I’ve made the mistake of deleting...
April 7, 2009 at 8:11 am
If by unused you mean that no one activates the procedures and no one runs any DML statements on the tables (including select statements), then the impact would be very...
April 6, 2009 at 6:26 am
Have to admit that I started thinking that something is wrong with my email:-P
April 5, 2009 at 10:30 pm
Yes you can. I've done it few times and there is no problem.
Adi
April 3, 2009 at 5:04 am
You can check for this kind of format. Take a look at the script bellow that shows you how to check for format. I think that it is...
April 2, 2009 at 7:06 am
I wouldn’t recreate the views. If you recreate the views in the wrong order, you’ll have the same problem again (e.g. if view B is based on view A...
April 2, 2009 at 6:53 am
Chirag (4/2/2009)
Great explanation Adi.
Thank you. Nice to get a good feedback sometimes:-)
Adi
April 2, 2009 at 6:30 am
Your join is fine. This is the way that auto mode works. If you’ll look closely at your XML, you’ll see that there is a hierarchy in it....
April 2, 2009 at 5:21 am
About 13 years ago the internet was not as developed as it is today, and there were a lot of myths about it. I remember getting an email saying...
April 1, 2009 at 7:50 am
Your procedure has no transaction at all, so there could be cases where only part of the procedure will be committed.
If the procedure will encounter a...
April 1, 2009 at 4:25 am
kinnon_2000 (3/31/2009)
sorry, having a bad day. didnt think it posted first time. delete isnt working for me so cant remove duplicate. :crazy:
If I now understand you correctly, you just want...
March 31, 2009 at 6:21 am
Viewing 15 posts - 1,036 through 1,050 (of 1,479 total)