Viewing 15 posts - 13,156 through 13,170 (of 13,849 total)
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
Could you create a distinct view and run your query against that?
If not, please mention what other restrictions you have to work round.
Regards
January 3, 2006 at 3:23 am
Ah - I read that to mean the scheduled execution of a VB.NET app.
December 22, 2005 at 10:28 am
Can you specify the user / password in the OLEDB connection string and use that to connect to SQL Server and then just EXEC the stored proc?
December 22, 2005 at 10:11 am
Maybe try initialising @variable before the conditions to get rid of possible NULL issues. Eg
set @variable = ''
if not exists (select * from table where id = 1)
begin
set @variable...
December 22, 2005 at 10:06 am
Viewing 15 posts - 13,156 through 13,170 (of 13,849 total)