Viewing 15 posts - 1,936 through 1,950 (of 5,356 total)
While there is no "last record", you might have a look at MAX(), which should be the equivalent.
November 2, 2004 at 12:52 pm
May I ask why you have a separate table for each merchant?
November 2, 2004 at 3:28 am
When you think some time about it, there is actually only one way to do this efficiently.
Remember that the leaf level of a nonclustered index contains the RID when there...
November 2, 2004 at 2:56 am
Not quite right!
It does run, however it is not supported. See here:
November 2, 2004 at 2:18 am
I guess, nobody will laugh when you can (and should) use the INFORMATION_SCHEMA views.
Anyway, there might be an even easier way to determine this property.
SELECT COLUMNPROPERTY( OBJECT_ID('authors'),'au_lname','AllowsNull')
returns 1, if...
November 2, 2004 at 12:52 am
What about SUSER_SNAME()?
November 2, 2004 at 12:44 am
This one might proabably be interesting to you:
November 2, 2004 at 12:41 am
Yes and no.
While it is technically possible to create a trigger on some system tables of msdb, it is not possible to create trigger on tables in master. And it...
November 2, 2004 at 12:38 am
You might want to have a look at BOL for IF UPDATE to test in your trigger if your column is updated.
October 30, 2004 at 2:12 pm
One possible way would be
set nocount on
/* cut here */
use tempdb
create table #the_table(the_value varchar(10));
insert into #the_table(the_value) values('a1');
insert into #the_table(the_value) values('a2');
insert into #the_table(the_value) values('a21');
insert into...
October 30, 2004 at 1:41 pm
See, if this helps:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;307487
for shrinking tempdb. And this
http://support.microsoft.com/default.aspx?scid=kb;en-us;224071
how to move it
October 30, 2004 at 1:02 pm
I'll help a little bit with the URL
October 29, 2004 at 3:25 am
See, if this helps:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;315886
http://support.microsoft.com/default.aspx?scid=kb;EN-US;312839
http://support.microsoft.com/default.aspx?scid=kb;EN-US;263556
http://support.microsoft.com/default.aspx?scid=kb;EN-US;311231
October 29, 2004 at 12:27 am
Yes, every user has permissions to create temporary tables.
October 28, 2004 at 11:54 pm
Viewing 15 posts - 1,936 through 1,950 (of 5,356 total)