Viewing 15 posts - 6,346 through 6,360 (of 7,636 total)
Use this function:
ALTER function [dbo].[fnSplit1](
@parameter varchar(Max) -- the string to split
...
July 10, 2008 at 8:50 pm
You can set up client aliases under the configuration manager.
July 10, 2008 at 8:18 pm
try this:
select *
from sys.tables t
Where NOT EXISTS( select * from sys.foreign_keys
Where t.object_id IN (Parent_object_id, Referenced_object_id) )
July 10, 2008 at 8:12 pm
What does "transfered to another school" entail, in database terms?
The SOP way to allow someone to perform operations on data without giving them direct access to the data is through...
July 10, 2008 at 7:03 pm
Vivien Xing (7/10/2008)
rbarryyoung (7/8/2008)
Alter Proc spLogin_OwnedObjects ( @login as SYSNAME ) As
/*
Display all objects in all DBs owned by the Login.
2008-07-06 RBarryYoung Created.
Test:
spLogin_OwnedObjects 'sa'
*/
declare @sql varchar(MAX), @DB_Objects varchar(512)
Select...
July 10, 2008 at 3:54 pm
I am still not getting this. I write to and report from the same tables all of the time, why do you think that you need seperate tables for...
July 10, 2008 at 10:44 am
Shaun McGuile (7/9/2008)
'Damn! how many more do we have to........before they listen/read the f***ing requirements?':D:D:D:D:D:D:D:D
I think that the mathematically correct answer to this question is "infinity".
The problem is that...
July 9, 2008 at 9:30 am
You gotta love English. I almost started to reply with "But you didn't include the States' Capitals." Then I realized that you didn't mean the capital capitals ("Capital"),...
July 9, 2008 at 7:29 am
I gotta admit, I didn't realize that GO worked as anything other than a client tool batch seperator.
July 8, 2008 at 10:48 pm
What have you tried so far?
Why can't you change the NText field to NVarchar(MAX)
July 8, 2008 at 9:51 pm
Brian:
True, but you could buffer it with a service broker queue. Which sort of is an asynchronous process, I guess. Of course your method of polling from the...
July 8, 2008 at 3:45 pm
David Naples (7/8/2008)
July 8, 2008 at 3:42 pm
Vivien Xing (7/8/2008)
Thank you Perry.I modified a little.
select user_name(uid) as user_name, name
from sysobjects
where user_name(uid) <> 'dbo' and user_name(uid) <> 'sys'
order by user_name, name
Actually, it is not valid to...
July 8, 2008 at 3:26 pm
re-corrected version (sorry):
Alter Proc spLogin_OwnedObjects ( @login as SYSNAME ) As
/*
Display all objects in all DBs owned by the Login.
2008-07-06 RBarryYoung Created.
Test:
spLogin_OwnedObjects 'sa'
*/
declare @sql varchar(MAX), @DB_Objects varchar(512)
Select @DB_Objects = '...
July 8, 2008 at 3:23 pm
Viewing 15 posts - 6,346 through 6,360 (of 7,636 total)