Viewing 15 posts - 7,486 through 7,500 (of 13,469 total)
my google-fu pointed me to an issue where SQL server Agent needs to be restarted, based on this MS article?
http://social.msdn.microsoft.com/forums/en-US/sqltools/thread/32a2c09a-156f-43b2-9076-b11ba9ccdafb/
do you think that could be the issue? that db mail...
June 1, 2011 at 2:38 pm
mohan.pariveda 18256 (6/1/2011)
Only...
June 1, 2011 at 2:14 pm
patla4u (6/1/2011)
Thanksi don't want to join tables but I want to create relation.
Is there any other way to create relation(foreing key constrain) like junction tables????
Thanks
L
nope. a foreign key must...
June 1, 2011 at 2:11 pm
don't just re-paste the same question...that doesn't help at all.
two tables can be JOINed via a SQL statement, and that join is not restricted at all...it can join on...
June 1, 2011 at 1:59 pm
patla4u (6/1/2011)
Means composite primary key to composite foreign key ????(it's not working)
SO how can i create relationship with table...
June 1, 2011 at 1:51 pm
unless you alias the table, you must use the whole 3 part naming convention(Database.Schema.Table.ColumnName) toi identify the columns in the joins:
here's the right way, and then again with aliases for...
June 1, 2011 at 1:48 pm
dunno about most folks; since it's on by default, and it's a low impact trace, i'm under the impression most people don't actively go and disable it;
I personally think there...
June 1, 2011 at 1:44 pm
you can join the two tables on two of the three criteria, but you can potentially get duplicates due to the third column
unless you assume/infer a specific customer_br?
...
LEFT OUTER JOIN...
June 1, 2011 at 1:41 pm
Sean Lange (5/31/2011)
Pretty sure this article will provide you with some useful information.
nice link!
June 1, 2011 at 1:37 pm
char(44) is a comma, is that your special character?
this statement in syntactically correct:
--the char
select char(44)
--an example
select 'the severity level of the patient or resident' + char(44) + 'injury'
INSERT INTO [dbo].[Events]
([ID]
,...
June 1, 2011 at 1:35 pm
if not too much time has past, the default trace, which logs DDL events like CREATE ALTER DROP, might still have it:

June 1, 2011 at 1:22 pm
ok, an update to random is certainly possible... you were really thin on the actual firstname/lastname table definitions, so i cannot provide you with a perfect example...
but, based on your...
June 1, 2011 at 1:17 pm
dbcc timewarp? (inside joke)
actually, i think the issue is the times are cumulative, and are since the server restarted...
so it's quite possible if your server is active, or has been...
June 1, 2011 at 12:42 pm
this will be boatloads faster and is a single set based query, instead of using a cu..cur... i can't even say the word...it's so evil....
SELECT top 1000 *
FROM (
SELECT
A.FName,
B.LName
FROM FNAMES...
June 1, 2011 at 12:32 pm
they way i would recommend is by using the script i contributed in this article:
Reverse Engineer A Database Trace[/url]
first find all the traces on your server with SELECT * FROM...
June 1, 2011 at 11:41 am
Viewing 15 posts - 7,486 through 7,500 (of 13,469 total)