Viewing 15 posts - 11,071 through 11,085 (of 13,460 total)
passwords or logins?
pretty much no matter what you do, you will not be able to see passwords...it's a huge security hole if you could create a trace or trigger and...
Lowell
May 21, 2009 at 7:42 am
without seeing your script, here is a common issue:
if you ALTER a table by adding a column, and then try to INSERTfeaturing that new column , an error is raised...
Lowell
May 21, 2009 at 6:45 am
it's the nature of the beast; the Just-In-Time Compiler, after a restart, has to recompile any pages and put them into memory.
First time the web page is accessed, it compiles...
Lowell
May 20, 2009 at 10:44 am
not sure if this is what you are after, but I often use fiddler to test web pages and see what data is being passed back and forth when...
Lowell
May 20, 2009 at 10:40 am
preventing relaying to outside emails is a very common mailserver setting; my mail server will not allow relaying unless you AUTH with username and password;
the server can also allow relaying...
Lowell
May 19, 2009 at 5:43 pm
i think seeing a function called multiple times is normal.
wouldn't this WHERE statement:
WHERE master.sys.fn_varbintohexstr(job_id) = substring(program_name, 30, 34))
be needed to be called one time for each row in sysjobs because...
Lowell
May 19, 2009 at 4:38 pm
glad the example got you pointed in the right direction; did you run a trace to see exactly what the ERP is doing?
triggers are rarely affected by anything outside of...
Lowell
May 19, 2009 at 3:20 pm
As usual, we'd need more info..your current trigger you tried, the CREATE TABLE definition of the table, the Actual "rule" you want to use to calculate the correct price.
here's a...
Lowell
May 19, 2009 at 11:05 am
I'm fiddling with this, and if we have consistent delimiters, it's REALLY easy to pull out with a tally table.
my dilemma is that it looks like multiple passes of updates...
Lowell
May 19, 2009 at 9:58 am
if you are limiting to a single Id, it should be fast...you could convert the textfield to varchar(max) for the query: if it's going to scan all rows for a...
Lowell
May 19, 2009 at 8:46 am
first get everything into a temp table, and make sure you convert to varchar(max)...it's a lot of trouble fiddling with TEXT datatypes.
something simply like SELECT convert(varchar(max),YourTextField) as BetterTextField,* into #tmp...
Lowell
May 18, 2009 at 7:01 pm
here's my guess;
as a general rule, an index which uniquely identifies a row is more valueable than an index which shows a value releated accross millions of rows.
assuming your status...
Lowell
May 18, 2009 at 12:16 pm
can you provide the CREATE TABLE definition for the table accservcategory ?
Lowell
May 18, 2009 at 8:18 am
Florian Reischl (5/17/2009)
Put this code above your URL-split:
ROW_NUMBER() OVER (ORDER BY (SELECT NULL))
I say it all...
Lowell
May 17, 2009 at 12:59 pm
change the cd.* to a list of the actual columns desired.
your status, I'm assuming is just one more field based on a case statement; you were not explicit on the...
Lowell
May 17, 2009 at 12:43 pm
Viewing 15 posts - 11,071 through 11,085 (of 13,460 total)