Viewing 15 posts - 6,091 through 6,105 (of 9,643 total)
Duplicate post. Please reply here
February 5, 2009 at 6:47 am
For data integrity issues it is much better to explicitly define the column(s) and foreign key(s).
In the scenario you mention you would have enforce RI using triggers which is much...
February 5, 2009 at 6:34 am
1. Yes, to the best of my knowledge you would need to develop a CLR function in C# or VB.
2. Yes, although you would want a function not...
February 5, 2009 at 6:24 am
katesl (2/5/2009)
February 5, 2009 at 6:15 am
Nah, only 24 hours between posts. We just haven't hit another question to go off on. Although there was one today where the OP finally posted DDL and...
February 4, 2009 at 3:51 pm
I'm going to jump in here and say "Thanks for writing the article". It takes some guts to put your code out there on a site like this because...
February 4, 2009 at 3:20 pm
Lynn Pettis (2/4/2009)
Me either, and I have seen this type of code before. I think it is actually ORACLE.
Yeah, I actually know just about that much ORACLE which is...
February 4, 2009 at 2:29 pm
Lynn Pettis (2/4/2009)
Jack Corbett (2/4/2009)
February 4, 2009 at 2:01 pm
Try again. The DDL you posted is not for SQL Server as it uses the VARCHAR2 data type which does not exist in SQL Server. I believe the...
February 4, 2009 at 1:49 pm
Lynn Pettis (2/4/2009)
February 4, 2009 at 9:59 am
Great, glad I could help.
I kind of held back on this question, but I have to ask since your developers are doing it.
Why are they using...
February 4, 2009 at 9:29 am
Yes Synonyms are probably the best option. A Synonym is basically just an alias for or a pointer to another object.
Think about it like a nickname. A person may...
February 4, 2009 at 9:10 am
I think the SYNONYM is really the way to go. The number of the rows in the table won't affect the usefulness of the SYNONYM.
I would not...
February 4, 2009 at 8:26 am
Something like this would work, but there may be a better solution:
;WITH cteAgents AS
(
SELECT
ROW_NUMBER() OVER (PARTITION BY agentid ORDER BY agentid) AS row_id,
agentid,
AcctNo
FROM
dbo.calls
)
SELECT
*
FROM
cteAgents
WHERE
row_id <= 5
February 4, 2009 at 7:44 am
MY guess is the operator for the Job does not have rights to the folder or folders being accessed. Sounds like you may need to lookup PROXY Accounts in...
February 4, 2009 at 7:30 am
Viewing 15 posts - 6,091 through 6,105 (of 9,643 total)