Viewing 15 posts - 4,891 through 4,905 (of 13,465 total)
looks like GROUP BY , and getting the MIN and MAX values;
what have you tried so far?
August 22, 2012 at 11:49 am
Local radio station recently said that people in a Fantasy Football League average 10 hours per week on Fantasy Football?
Is that an exaggeration or do you think that is a...
August 22, 2012 at 11:26 am
you must have physical control of the server to regain control;
basically you end up starting the server in single user mode; in that mode, any local administrator gets promoted to...
August 22, 2012 at 11:17 am
question makes sense sure;
i think the question is all about css layout;
so if you added a default to theTD class, it might do what you are asking, and is...
August 22, 2012 at 11:14 am
can you try this and tell me if it outputs what you were expecting?
DECLARE @tableHeader varchar(max)
DECLARE @tableTail varchar(max)
DECLARE @tableHTML NVARCHAR(MAX) ;
SET @tableHeader =
N'<H2>DBA Jira open Calls</H2>' +
N'<table border="1">' +
N'<tr>'...
August 22, 2012 at 9:49 am
simon, I'm not sure; i didn't see anything explicitly saying FOR XML in what you pasted; i always construct my html in three peices; header/body/tail;
because the FOR XML needs...
August 22, 2012 at 9:20 am
a very basic example of including extra tags:
DECLARE @HTMLBody varchar(max)
Select @HTMLBody = (Select Row_Number() Over(Order By is_linked, name) % 2 As [TRRow],
...
August 22, 2012 at 8:44 am
it depends;
you can use css to define the size fo the td cells(width: 210px;min-width: 100px;), or set them to not allow wrapping at all, depending on your needs (white-space:nowrap;), and...
August 22, 2012 at 8:37 am
dwilliscp (8/22/2012)
However since we were using the bottom section..not top.. domain accounts will not work. Thanks for your help.
I learned something here too; I didn't think impersonation was allowed,...
August 22, 2012 at 8:15 am
dwilliscp (8/22/2012)
August 22, 2012 at 7:46 am
CELKO (8/22/2012)
August 22, 2012 at 7:16 am
well a restore in SQL server is all or nothing. the backup is an exact copy of the commited transaction data.
if the backup file is corrupted, the backup simply fails,...
August 22, 2012 at 6:52 am
ahh i missed that somehow;
i think Adding Dereks idea, just a couple of nested REPLACE functions to change (nnn) to (n) and (nn) to (n) would be the easiest.
August 22, 2012 at 6:21 am
personally I use a purchased copy of CoreFTP Pro($40 bucks) , which supports SFTP and other secure FTP protocols;
I can call it from a command line, where i pass it...
August 22, 2012 at 6:11 am
you can do it with nested STUFF statements.
play with this till you understand it:
with MYCTE(val)
AS
(
SELECT 'A(1).BC(10).DEF(100)' UNION ALL
SELECT 'A(4).BC(34).DEF(754)' UNION ALL
SELECT 'A(9).BC(78).DEF(957)' UNION ALL
SELECT 'A(9) AND OTHER STUFF HERE...
August 22, 2012 at 5:56 am
Viewing 15 posts - 4,891 through 4,905 (of 13,465 total)