Viewing 15 posts - 11,071 through 11,085 (of 13,462 total)
i think it's this WHERE statement:
WHERE indid >= 2 and indid = 1 would include the clustered index of each table, and certainly makes a huge difference when i ran...
May 21, 2009 at 10:35 am
to add to what Greg said, SQL server keeps a pointer for each TEXT field;
SQL server will try to store each fields data stuffed into a TEXT datatype in a...
May 21, 2009 at 9:58 am
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
May 18, 2009 at 12:16 pm
can you provide the CREATE TABLE definition for the table accservcategory ?
May 18, 2009 at 8:18 am
Viewing 15 posts - 11,071 through 11,085 (of 13,462 total)