Viewing 15 posts - 13,141 through 13,155 (of 13,838 total)
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
Hi Geoff - please provide three or four lines of source data and then an example of the results that you would like, based on that data.
January 5, 2006 at 6:49 am
Sorry about that - I should know better than to leave my replies strewn with Latin phrases.
Ad hoc means "for a specific purpose" - I meant it literally - it is...
January 3, 2006 at 4:54 am
SQL Server is a database platform, not a GUI tool.
Access is both a GUI tool and a database platform - it stores, processes and presents data.
To use SQL Server in a...
January 3, 2006 at 3:30 am
Viewing 15 posts - 13,141 through 13,155 (of 13,838 total)