Viewing 15 posts - 361 through 375 (of 479 total)
janine.rawnsley (5/7/2008)
"SELECT UDF FROM Table" - to me...
May 7, 2008 at 9:18 am
Although I realised that this was another silly question which was going to have an answer which was language specific, inflexible and basically stupid, my immediate thought was to use...
May 6, 2008 at 5:56 am
This is something I didn't know and which is probably quite important.
MS does mention that service packs and hotfixes should be reapplied
Important The resource database (mssqlsystemresource) is...
May 1, 2008 at 10:44 am
sammesel (4/30/2008)
A. to see all compiled objects which depend on a table:
sp_depends tablename
B. to see all objects (i.e tables,...
April 30, 2008 at 9:48 am
janine.rawnsley (4/30/2008)
Do'h.. a bit more test data (or coffee) and that would have jumped out at me.
It took me 2 attempts as the example was originally going to be '192.001.001.001'...
April 30, 2008 at 7:49 am
janine.rawnsley (4/30/2008)
The table variable is only created for demo purposes..Just use ORDER BY CAST(replace (IPAddr,'.','') as int)
No, because this would place '192.1.1.1' before '19.2.1.12'.
Also addresses like '192.168.123.234' would cause...
April 30, 2008 at 7:19 am
Ian,
I too was going to post a script to do the job, but the drag/drop method is waaaaaaaaaaay better! 😎
Here it is anyway
create proc print_select_for
@table varchar(128)
as
begin
declare @s-2...
April 30, 2008 at 5:34 am
Craig (4/29/2008)
Don't rubbish the editor 🙂 Busy guy and good good site!!! So what if occasional question gets through that gets some people riled, surely some questions should?
I actually like...
April 29, 2008 at 2:10 am
Steve Jones - Editor (4/28/2008)
April 29, 2008 at 2:02 am
Steve Jones - Editor (4/28/2008)
However I can see the confusion...
April 28, 2008 at 10:10 am
Thinking about this over lunch, it seems that the choice between the 2 answers which give correct results comes down to the interpretation of the phrase 'how can you easily...'....
April 28, 2008 at 6:40 am
Anthony K. Valley (4/27/2008)
However, if you view the possible...
April 28, 2008 at 3:45 am
I just checked the URL given and found that the first list of the table actually says that sys.identity_columns inherits columns from sys.columns, so I would say this confirms that...
April 28, 2008 at 3:35 am
Whoever 'made up' the answers should have checked that the made up' answers didn't work. I'd previously used 'select * from sys.columns where is_identity=1' so ticked that, hence got this...
April 28, 2008 at 3:28 am
Viewing 15 posts - 361 through 375 (of 479 total)