Viewing 15 posts - 13,141 through 13,155 (of 13,841 total)
Please post your query, an example of the results you are getting and an example of the results you would like to get.
February 9, 2006 at 2:04 am
Presumably the data model was created by the programmers, who knew when they were creating it that they would always create at least one ORDER_LINE row for every ORDER row? ...
January 20, 2006 at 4:24 am
As far as I can think, this is best left to the application. There is no standard way of enforcing this - nor can I envisage one.
Of course, it would...
January 20, 2006 at 3:42 am
Stored procedures do not just return resultsets. Check BOL for info on OUTPUT parameters in stored procs.
January 16, 2006 at 9:02 am
Edison was actually more emphatic than this:
"Genius is one per cent inspiration and ninety-nine per cent perspiration. Accordingly, a 'genius' is often merely a talented person who has done all...
January 11, 2006 at 6:28 am
OK. Have a look at the results of running
SELECT Billing.AcctID, Family.AcctID
from Billing inner join Family
on Billing.Student = Family.Student
Which will presumably correlate with the BILLING records that are being updated.
You...
January 11, 2006 at 2:52 am
Are there any NULLs in the CHARGE or PAYMENT entries in BILLING?
January 11, 2006 at 2:14 am
It's all about how the compiler works as it tries to optimise the code. God knows what's going on in detail though.
January 9, 2006 at 2:41 am
That was my guess too ... I just wan't going to say it yet![]()
January 9, 2006 at 2:28 am
So are you saying that something like the statement
update user_master
set field = 'x'
would cause the trigger to fire as many times as there are rows in the table? If...
January 9, 2006 at 2:18 am
Please do not cross post. Use this thread:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=149&messageid=249168
January 9, 2006 at 2:16 am
This is one way:
where username = IsNull(@param1, username)
if @param1 is NULL, the IsNull function returns username, which is, of course, always equal to itself.
January 9, 2006 at 1:54 am
Check out 'DTSRun' in Books Online, it will help you set up the command line that you need to run a DTS package.
To run this command line from within a...
January 9, 2006 at 1:48 am
When you run the export wizard, you get the option to save the package.
Once you have saved the package, just go into the Data Transformation Services section of EM, right-click...
January 5, 2006 at 6:56 am
select a.apartment_id, p.description
from apartment a left outer join
presentation p on a.apartment_id = p.apartment_id left outer join apartment_tour t on a.apartment_id = t.apartment_id
January 5, 2006 at 6:52 am
Viewing 15 posts - 13,141 through 13,155 (of 13,841 total)