Viewing 15 posts - 9,601 through 9,615 (of 26,489 total)
bpowers (9/13/2012)
The goal is to find out which permissions one group has that another group does not, or vise verse.
If so, then why not:
Group ID ...
September 13, 2012 at 10:38 am
Sean Lange (9/13/2012)
honza.mf (9/13/2012)
Sean Lange (9/13/2012)
For everybody who seems to be hung on the verbiage I can only say "GET OVER IT". English is not the native tongue of...
September 13, 2012 at 9:56 am
Hate to say it, but I have no idea what is being asked here either.
September 13, 2012 at 9:18 am
D-SQL (9/13/2012)
September 13, 2012 at 9:07 am
Jeff Moden (9/12/2012)
alanspeckman (9/12/2012)
September 13, 2012 at 9:04 am
scogeb (9/13/2012)
Jeff Moden (9/12/2012)
Also, what's with all the LTRIM/RTRIM stuff? Data should be properly stored without leading spaces and trailing spaces...
September 13, 2012 at 8:39 am
rc_stone_1 (9/13/2012)
Actually, I am using 2012; ...
May I suggest that you post your question in a more appropriate forum in the future? You did post this in...
September 13, 2012 at 8:25 am
SQLCrazyCertified (9/13/2012)
Lynn Pettis (9/13/2012)
September 13, 2012 at 8:20 am
Rakesh.Chaudhary (9/13/2012)
Thanks to all for the replies. The solution given by Lynn and Chris was Perfect....
All the work was Chris's, all I did was offer a slight change...
September 13, 2012 at 8:12 am
Sounds to me that you need to add disks to your server so you have more space. Another alternative is to look at archiving old data from your database(s)...
September 13, 2012 at 8:11 am
Skanda (9/13/2012)
am using below statement in a select statement,
" e.expiration_date" is a date fromat column,
i want the date should be displayed in 13 Sep, 2012 fromat.
case when ( rtrim(e.expiration_date)is...
September 13, 2012 at 7:55 am
Is this what you are trying to accomplish?
SELECT
-- TOP (100) PERCENT << Totally unnecessary
ob1.Name AS Agent,
COUNT(ln.Object_ID) AS LoanCount,...
September 13, 2012 at 7:42 am
ChrisM@Work (9/13/2012)
STUFF() is perfect for this:
SELECTData,
ChangedData = STUFF(Data,50,25,SPACE(25))
FROM ( -- note: '[' is position 49 and ']' is position 75
SELECT Data = 'ZY0503400000234567891234567890110000000000088975[_5668550000000XXXXXXXXXXX]'
) d
WHERE LEFT(Data,8) = 'ZY050340'
Or...
September 13, 2012 at 7:26 am
D-SQL (9/12/2012)
Is...
September 13, 2012 at 6:15 am
Viewing 15 posts - 9,601 through 9,615 (of 26,489 total)