Viewing 15 posts - 11,851 through 11,865 (of 15,381 total)
na1774 (5/24/2012)
But I would like to know why a 'CREATE DATABASE' Statement cannot be a part of Transaction. At the same time what...
May 24, 2012 at 12:51 pm
espanolanthony (5/24/2012)
No the above query fails. any idea???
From the details your provided? Nope.
If you actually want some help you need to help us to help you. Take a look at...
May 24, 2012 at 12:43 pm
So what really is the question here? At first is seems you need help with an insert statement, then you say something about a job.
The sql statement is pretty simple.
insert...
May 24, 2012 at 10:23 am
komal145 (5/24/2012)
Gone through rules...the query is not working as per rules I posted:(
Then you will either need to tweak the query or explain what "not working as per rules" means.
May 24, 2012 at 10:16 am
TheSQLGuru (5/24/2012)
Sean Lange (5/24/2012)
TheSQLGuru (5/24/2012)
Actually Grant I don't see even the slightest hint of a question from the OP - it is just a bunch of code. No request...
May 24, 2012 at 9:33 am
As the OP pointed out, this is a duplicate thread. Please direct all replies here. http://www.sqlservercentral.com/Forums/Topic1305928-1633-1.aspx
May 24, 2012 at 9:20 am
There is probably a cleaner way to do this but this produces the correct results according to your sample data. I am kind of buried at work or I would...
May 24, 2012 at 9:15 am
Not much info in your post here. Pretty hard to offer suggestions about unknowns.
Take a look at the indexes stairway. It is a great series on understanding indexes. I suspect...
May 24, 2012 at 8:47 am
Oh, and as for banning - I say "no". You don't have to answer them, you can ignore anyone you wish. If people start getting banned for asking "basic questions",...
May 24, 2012 at 8:30 am
TheSQLGuru (5/24/2012)
Actually Grant I don't see even the slightest hint of a question from the OP - it is just a bunch of code. No request about what if...
May 24, 2012 at 8:23 am
SQLKnowItAll (5/24/2012)
Sean Lange (5/24/2012)
SQLKnowItAll (5/23/2012)
May 24, 2012 at 8:06 am
SQLKnowItAll (5/23/2012)
May 24, 2012 at 7:41 am
something like this help?
SELECT f.name AS ForeignKey, OBJECT_NAME(f.parent_object_id) AS TableName,
COL_NAME(fc.parent_object_id, fc.parent_column_id) AS ColumnName,
OBJECT_NAME (f.referenced_object_id) AS ReferenceTableName,
COL_NAME(fc.referenced_object_id, fc.referenced_column_id) AS...
May 23, 2012 at 2:55 pm
SQL Kiwi (5/23/2012)
Sean Lange (5/23/2012)
Be careful here. This cte that Mike used is what is called a recursive cte. It is NOT set based, it is hidden looping.
How do you...
May 23, 2012 at 1:56 pm
Viewing 15 posts - 11,851 through 11,865 (of 15,381 total)