Viewing 15 posts - 3,781 through 3,795 (of 9,643 total)
Paul White (11/19/2009)
I'm in two minds about this:http://www.sqlservercentral.com/Forums/Topic821057-145-1.aspx#bm821538
Is it spam? Should I care? Thoughts?
Paul
Definitely care. That's not the purpose of these forums.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 19, 2009 at 7:09 am
I'd really recommend spending a couple hundred $'s on one of the tools. This is likely something you'll be doing on a regular basis and the tools also help...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 19, 2009 at 7:06 am
Another option is do buy one of the comparison tools: RedGate SQLCompare, ApexSQLCompare, xSQLCompare. These do a schema comparison and will make the changes or generate the scripts necessary...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 19, 2009 at 6:41 am
For anyone who may stumble upon this thread and wonder what the solution is, the error is in the WHERE clause.
where user_defined_id in (26) AS 'CLASSIFICATION'
should be
where user_defined_id...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 19, 2009 at 6:39 am
I still don't understand exactly what you are asking. Do you want to know how to restrict users from deleting a specific row from a table?
Here's an article[/url] that...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 19, 2009 at 6:29 am
GilaMonster (11/19/2009)
Jack Corbett (11/18/2009)
j_braclin (11/18/2009)
i dunno. This kind of confused me.
Well then ask some questions. What are you confused about? I'm sure Gail, the author, will try to...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 19, 2009 at 6:08 am
The main way is to make sure you have applied security using the least privileges method. Basically only give users the rights they need. So none of your...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 18, 2009 at 8:55 pm
j_braclin (11/18/2009)
i dunno. This kind of confused me.
Well then ask some questions. What are you confused about? I'm sure Gail, the author, will try to clarify, and I'll...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 18, 2009 at 7:09 pm
Pedro,
The answer is it depends on what you are doing. Replacing a cursor with a while loop is still not creating a set-based solution. SQL Server is designed...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 18, 2009 at 4:14 pm
I should have asked this before, but if the data is "mostly static" why do you need nolock? With mostly static data you shouldn't have much in the...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 18, 2009 at 12:27 pm
No problem Bru. Yours worked, but with some caveats, and using yours helped me clarify mine. I was originally excluding the Windows Groups.
Ankur, I'd share if I...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 18, 2009 at 12:10 pm
Alvin Ramard (11/18/2009)
Lynn Pettis (11/18/2009)
Alvin Ramard (11/18/2009)
Question: Why do ou keep banging your head against the wall?Answer: Because it feels so good when I stop.
You mean I have been hitting...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 18, 2009 at 12:06 pm
Wish I knew the answer. Will ask some friends.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 18, 2009 at 12:03 pm
Do want to log the update if the data in the column does not change. For example:
Update Table
Set column = column
Will cause an update trigger...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 18, 2009 at 12:01 pm
Bru Medishetty (11/18/2009)
select [NAME] from dbo.syslogins where isntname = 1
If I am not wrong SQL Server does not store the First Name , Last Name of the...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 18, 2009 at 11:53 am
Viewing 15 posts - 3,781 through 3,795 (of 9,643 total)