Viewing 15 posts - 6,721 through 6,735 (of 9,643 total)
It does provide the db_id and the object_id and you can use that information to get that information. YOu would need to execute the query in the user database.
Other...
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
December 4, 2008 at 9:39 am
How are you handling the Multi-value parameter in the stored procedure? Here is a quote from BOL (bolding by me):
Writing Queries that Map to Multivalued Report Parameters
You can define...
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
December 4, 2008 at 9:33 am
There is not a KEEP function in SQL Server. You would need to do something like this:
create table #t (n int)
insert into #t (n) values (100)
insert into #t (n)...
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
December 4, 2008 at 9:22 am
Please see the links in my signature to see how to post to get better answers. I don't have enough information to help.
What is your data source definition?
What is...
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
December 4, 2008 at 9:07 am
This doesn't get you IP Address, but it will get you the rest:
SELECT
I.*
FROM
sys.traces T CROSS Apply
...
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
December 4, 2008 at 8:32 am
There is no mechanism in SQL Server to create a Login Group. As Jonathan said, if you want to allow a group of users access to your SQL Server...
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
December 4, 2008 at 8:05 am
The inserted and deleted tables are only available within the scope of the trigger and once you do dynamic SQL or call a stored procedure you have created a new...
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
December 4, 2008 at 8:00 am
Please see the links in my signature to see how to post to get better answers.
We don't have enough information to give you proper advice. SSIS is designed for...
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
December 4, 2008 at 7:40 am
Seth is right. You want the process that takes the data from tableA and inserts it into tableB to do the truncation. Why? Because the default 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
December 4, 2008 at 7:36 am
One way is to process them in SSIS using the FUZZY Lookup component. I don't think it works all that well, but it does get some. Depending on...
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
December 3, 2008 at 3:18 pm
Check out this article[/url]and part 1 which is linked in the article
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
December 3, 2008 at 1:47 pm
You should just use a temp table and truncate it.
Are you sure what you are doing requires a loop?
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
December 3, 2008 at 1:44 pm
Try setting the the flat file source object to unicode. Found this here, http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1200198&SiteID=1
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
December 3, 2008 at 1:41 pm
You cannot reference tb1 in the derived table. So you should remove this line from the derived table:
WHERE tb1.[Change Notification Number] = cn2.[Change Notification Number]
If you explain what the query...
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
December 3, 2008 at 12:30 pm
I'd strip it in .NET.
You can do it easy enough in SQL too. Replace(Replace(@DonationID, '{', ''), '}', '')
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
December 3, 2008 at 12:25 pm
Viewing 15 posts - 6,721 through 6,735 (of 9,643 total)