Viewing 15 posts - 7,741 through 7,755 (of 13,469 total)
another obvious fix would be to simply copy all the files form 140 folders to a single folder, and use the example i gave against that one folder.
April 14, 2011 at 8:24 am
I presented an idea and example to get you part of the solution. I thought it would get you started...you really didn't provide anything concrete as far as true requirements.
it...
April 14, 2011 at 8:19 am
is your DNN instance local, on your network, or on some shared hosting server like ihostasp? I know my shared hsoting sometimes bogs down, but it's hard to diagnose a...
April 14, 2011 at 8:09 am
here's an example i like to post using BULK insert. you can do this via SSIs as well, but it's a different technique.
in my example below, i have 4 known...
April 14, 2011 at 6:56 am
ok, i've seen people knee jerk on things like that...
You could mask the CASE statement as a SELECT (or JOIN it to your other data) like this:
/*--Results
(No column name)StartParamEndParam
DailyNULL2011-04-13 14:44:10.230*/
DECLARE...
April 13, 2011 at 12:45 pm
how about nslookup mail.yourserver.com to see what the DNS reverses to, or a ping mail.yourserver.com and see the address it's going to;
why do you need it's IP vs the DNS...
April 13, 2011 at 11:51 am
ok actually, I believe this shows you some of the info specific to a linked server:
SELECT *
FROM ::fn_dblog(NULL, NULL)
where [allocUnitName] IN('sys.sysxsrvs.cl','sys.syslnklgns.cl')
but without a way to tie it to a user,...
April 13, 2011 at 11:48 am
Remember the transaction log does not retain any information about WHO performed any operation.
I cannot see it pointing to the level of detail you are looking for, like object...
April 13, 2011 at 11:43 am
the destination mail server? like whatever mail.yourserver.com resolves to? or the ipaddress of the SQL Server Sending the mail to that server?
April 13, 2011 at 11:13 am
http://support.microsoft.com/kb/920093 (4/13/2011)
Trace flag 836 causes SQL Server to size the buffer pool at startup based on the value...
April 13, 2011 at 9:46 am
yes, exactly...but don't take my word for it; play with this example i just slapped together: you get multiple rows back IF your function returns multipel rows:
CREATE Function AvailSizes(@ObjectName varchar(30))
returns...
April 13, 2011 at 9:02 am
it's kind of confusing, yeah.
no common data is required between the two.
I try to think of an ITVF the way UPPER() or ROW_NUMBER() function works: it's going to return something...
April 13, 2011 at 8:25 am
I'm afraid you are out of luck, unless you have a separate DML trace running prior to the offense.
adding and dropping linked servers are not DDL operations, and do not...
April 13, 2011 at 8:08 am
Paul i poke around codeproject.com an awful lot for grabbing .NET examples to adapt to my idea at the time, but I don't have a vb.net oriented forum handy for...
April 13, 2011 at 8:01 am
Viewing 15 posts - 7,741 through 7,755 (of 13,469 total)