Viewing 15 posts - 3,646 through 3,660 (of 13,469 total)
Sean Lange (4/16/2013)
Lowell (4/16/2013)
Sean Lange (4/16/2013)
jimoa312 (4/16/2013)
...Run this ONLY ON A DEV/TEST server!!!!
One last thing...did I mention that you should not run this in...
April 16, 2013 at 8:00 am
Sean Lange (4/16/2013)
jimoa312 (4/16/2013)
... DO NOT RUN THIS IN PRODUCTION!!!!!!!...Run this ONLY ON A DEV/TEST server!!!!
One last thing...did I mention that you should not run this in production???
Happy hunting!!!
you should...
April 16, 2013 at 7:44 am
really?
to me, the WHERE just does not look right:
I see two huge issues:
first, each EXISTS seem to reference THREE tables, and there's no joins...i don't even think it should work:
WHERE...
April 16, 2013 at 7:38 am
Minnu (4/16/2013)
Below is the query am using..
create or replace trigger tr_stud
after insert or update or delete
of stud_code , name
on stud
referencing old as old new as new
for each row
begin
...
April 16, 2013 at 7:24 am
it's been a long time since you followed up on this, and you've changed which tables you are referring to.
did you fix the issue on MODEL_CODE and now have the...
April 16, 2013 at 5:17 am
just a suggestion, but in the past i've used port 14330 (1433 x 10)
and also on my current dev machine, that has every version as an instance,
they use ports...
April 15, 2013 at 2:39 pm
ugh; sounds more like a "Create a Blame-Thrower Tracking Device" to me;
I'd try to turn this into a list of the proactive things you've put into place to avoid disasters...
April 15, 2013 at 1:01 pm
rightontarget (4/15/2013)
Thank you for replies. Does it matter if I am running 64bit installation of sql server?
no;when you install MySQL, both providers(32 bit and 64 bit) are installed. there's...
April 15, 2013 at 12:02 pm
jbulldog (4/15/2013)
April 15, 2013 at 10:49 am
you are pretty consistently ignoring the possibility that values might be null.
You've got to bulletproof your code to consider datatypes (converting int to varchar, for example), where the data...
April 15, 2013 at 10:44 am
Sean's been very helpful here as well; when you ask strangers for help, you've got to put some effort and thought into it yourself. YOU are the one who has...
April 15, 2013 at 10:32 am
your sample data really needs to INSERT into your table you posted; all we will really have is whatever you post here; if we cannot simply run it in...
April 15, 2013 at 8:15 am
your outer query has Two WHERe statmeents; the second one should be an AND, i think:
SELECT
dbo.ACCOUNT.PORTFOLIO
FROM dbo.ACCOUNT
INNER JOIN dbo.SERVICE_JOIN
...
April 15, 2013 at 7:55 am
your question needs the same solution you can see in this link from a couple of days ago:
if you post DDL and sample data the way you see in that...
April 15, 2013 at 7:41 am
this thread on SSC is what i have saved, and has been working for me:
http://www.sqlservercentral.com/Forums/Topic340912-146-1.aspx
April 15, 2013 at 7:24 am
Viewing 15 posts - 3,646 through 3,660 (of 13,469 total)