Viewing 15 posts - 3,121 through 3,135 (of 5,103 total)
>>I guess you could create a trigger on syscomments and ... <<
Triggers on system tables are not ... Ermm ... supported ![]()
July 21, 2005 at 10:12 am
And beware that you may get many "unwanted" things with this.
etc ...
Cheers!
July 21, 2005 at 10:06 am
For remote Administration I'd rather grant RDP rights to a very limited account and use a non standard port for it ![]()
Cheers!
July 21, 2005 at 9:56 am
And just for the fun of it MS ACCESS can handle dBase III file import in to SQL Server 2000 very nicely
July 21, 2005 at 9:48 am
Yeah, he picked the slower one
<pun intended> ![]()
July 21, 2005 at 9:41 am
select *
from tblpart left outer join tblorg on tblpart.orgid = tblorg.orgid
where (tblorg.catid = @varCat or @varCat is null )
Just keep in mind that you may get Table Scans with...
July 21, 2005 at 9:21 am
The solution is the Key-Table method
You can create a table with the following structure:
Create Table Allkeys (
TableName varchar(128) PRIMARY KEY,
Key int default(0)
)
and you will have a procedure like
create proc LastKey (@Tname varchar(128),...
July 21, 2005 at 9:17 am
Coming from a place where unions never worked (is there such a place where they actually did ? ) I am openly AGAINST them in any form or fashion. It...
July 21, 2005 at 8:28 am
Hex numbers are made up of digits '0123456789ABCDEF' and as you can see D is in that set
0D830 (hex) = 55344 (decimal)
Cheers!
July 19, 2005 at 3:20 pm
the error message is pretty clear:
User does not have permission to alter database ...
Your login needs to have enough permitions to perform this task! (which it doesn't now
July 19, 2005 at 2:26 pm
can you post the definition of : ft_work.dbo.rp_work
July 19, 2005 at 2:13 pm
Viewing 15 posts - 3,121 through 3,135 (of 5,103 total)