Viewing 15 posts - 3,646 through 3,660 (of 13,462 total)
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
piliki (4/14/2013)
waiting for best answers!!!!
the example i provided actually works; so you will have to provide the specific details of whatever you did.
a user does nto have any more rights...
April 14, 2013 at 3:06 pm
SET @body = 'New record '+'''' + @ConfigSetID_Ins + ',' + @Name + ',' --+ @Timestamp
+ ''''+' has been added to '+'CongifSet table in xxxxx'
you must use CAST...
April 12, 2013 at 3:06 pm
you'll have to make a user for each Windows group or specific login, the rest is the same you would do in any other database: create a role with only...
April 12, 2013 at 2:36 pm
good god that is like the 200th post where we proposed the same solution with only minor differences between our code example!
you usually beat me to the punch anyway!
April 12, 2013 at 1:58 pm
inside the trigger, you can capture the first 4000 chars of the command text:
inside a trigger, you can do this, (DBCC INPUTUFFER can be used by users agasint their own...
April 12, 2013 at 1:56 pm
Viewing 15 posts - 3,646 through 3,660 (of 13,462 total)