Viewing 15 posts - 2,446 through 2,460 (of 13,469 total)
here's a simple example that returns the html as a varchar(max) I think; note it doesn't download images or anything else on the page.
'requires
'Imports System.Net
...
March 15, 2014 at 5:22 am
yes you can filter on Database_id or database_name, the same way you could with a server side trace.
here's a screenshot using 2012's GUI to build an extended event session:
March 14, 2014 at 2:43 pm
Pearl I'm using the exact same code in a scheduled job every day;the job captures the current wait stats, then resets them with the dbcc perf command;
i'm thinking that over...
March 14, 2014 at 1:40 pm
if you don't want to browse the scripts section i mentioned, the easiest way is to use SSMS: In SSMS2012, make sure the scripting option for script indexes is true...
March 14, 2014 at 7:26 am
just a list of indexes, or the scripts for the indexes?
just the list:
select * from sys.indexes where object_name(object_id) = 'EDLogDetail'
scripting the indexes is a little harder, there's a lot of...
March 14, 2014 at 7:13 am
a part of the issue is probably memory management; i've been spoiled by the .Nets frameworks' garbage collection.
i see that PowerShell 2.0 had a problem with that, and explains...
March 13, 2014 at 12:46 pm
if you are excluding two specific values:
WHERE ANI NOT IN('614xxxxxxx''614yyyyyyy' ) but that doesn't prevent 614aaaaaaa for example.
if you wanted to guarantee no alphanumerics(becauese people are lazily putting in repeating...
March 13, 2014 at 9:37 am
find and replace, in a proper text editor, because you would visually confirm each change, is absolutely the way to go.
a blanket find and replace is not going to be...
March 13, 2014 at 7:03 am
Basically its a find and replace operation... you can select definition from sys.sql_modules to get the CREATE PROC statements but you need to change it to alter and add with...
March 13, 2014 at 4:31 am
gfoulks (3/12/2014)
DateTime
Acct_Number
SSN
Script_Code
Div_indicator
first_name
last_name
ani
terminate_area
transfer_area
Periodically we are getting records in this table where ani = 614xxxxxxx
We want to prevent all records with the ani...
March 12, 2014 at 9:28 am
gfoulks (3/12/2014)
I've searched the internet looking for examples of a instead of trigger that I would like to setup but I've not been able to find anything that would really...
March 12, 2014 at 9:05 am
I think error " The server response was: 5.7.1 Client does not have permissions to send as this sender" is related to a specific mail setting; that is, using account...
March 12, 2014 at 5:49 am
vmoreau (3/11/2014)
In a SQL 2018 database I need to fix some data in a huge common table that is referenced by FK across lots of other huge table in the...
March 11, 2014 at 3:01 pm
well i went to the link provided, and have no ida what data you want to capture; i'd guess it's the short blurbs ont he left of the page?
whatever that...
March 11, 2014 at 8:55 am
i chose None of the above, because the AD group does not have the domain in the command, making it invalid.
--no such user or role
/*
Msg 15151, Level 16, State 1,...
March 7, 2014 at 1:51 pm
Viewing 15 posts - 2,446 through 2,460 (of 13,469 total)