Viewing 15 posts - 11,086 through 11,100 (of 13,469 total)
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
Florian Reischl (5/17/2009)
Put this code above your URL-split:
ROW_NUMBER() OVER (ORDER BY (SELECT NULL))
I say it all...
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...
May 17, 2009 at 12:43 pm
it's the * for the column list.
there's no problem running that statement all by itself, but if ytry to create a VIEW of it, you'll have problems because the emp_id...
May 17, 2009 at 12:18 pm
here's some consumable data to help look at the problem.
i think in your example you said one column was c_date, but int he SQL you referenced clocking_date; i added both...
May 17, 2009 at 6:08 am
then it is probably owned by a different schema than dbo, and needs to be identified by that.
what is the real, exact error message?
maybe if you have a user named...
May 15, 2009 at 10:30 pm
if it literally says 'table name' , with a space, you'll need to wrap any name with spaces in double quotes or brackets:
SELECT * from [My Table Name] WHERE [First...
May 15, 2009 at 9:51 pm
i tried creating a brand new post, and immediately deleting it.
http://www.sqlservercentral.com/Forums/Topic718433-433-1.aspx
i was unable to delete it.
May 15, 2009 at 9:34 pm
i think if you create a brand new post, you can delete it , but if it's a reply to a post, instant-notification emails might have foreign keys to your...
May 15, 2009 at 1:03 pm
Viewing 15 posts - 11,086 through 11,100 (of 13,469 total)