Viewing 15 posts - 1,486 through 1,500 (of 9,643 total)
Or you could write it this way:
UPDATE ob_problem_list_
SET datefield = (CONVERT([varchar](10),getdate(),(112)))
FROM
inserted i
WHERE
i.person_id = ob_problem_list_.person_id and...
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
July 18, 2012 at 11:18 am
That certainly looks like a KERBEROS error message to me. I'd double-check all my SPN's and work with the network/windows admin to ensure that delegation is setup correctly 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
July 18, 2012 at 8:47 am
Gerard,
What platform is your experience with?
BY default SQL Server does pessimistic locking. So, within a transaction it will lock what it needs to lock to maintain consistency. So...
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
July 18, 2012 at 8:43 am
Did you install SQL Server 2008 with the same collation as the 2005 server?
Have you verified that source definition hasn't changed to allow more characters and thus the conversion 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
July 18, 2012 at 8:33 am
I don't know of a way to keep anyone from being able to see that the linked server exists but you can use the local login to remote login mappings...
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
July 18, 2012 at 8:15 am
pwalter83 (7/17/2012)
SQLRNNR (7/10/2012)
A better description...
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
July 17, 2012 at 10:08 am
Sure that's a possibility. Depending on indexing summing the totals for a customer might be acceptable and might be a lesser load on the server than adding a step...
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
July 17, 2012 at 9:56 am
gerard-593414 (7/17/2012)
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
July 17, 2012 at 9:23 am
From my perspective a once a day process says SSIS. Are the imports the same for each site? If they are then it is on package that has...
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
July 17, 2012 at 8:40 am
Do you want to return the column name of the column(s) that contain the value or do you want to return the each row that has a column that contains...
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
July 17, 2012 at 8:34 am
You could do something like this:
SELECT
*
FROM
sys.dm_exec_cached_plans AS DECP
CROSS APPLY sys.dm_exec_sql_text(DECP.plan_handle) AS DEST
YOu don't want to do select *...
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
July 17, 2012 at 8:25 am
Yes you need to know or learn some .NET to script in SSIS. You should avoid the ActiveX Script Task because it is basically added to support migration from...
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
July 17, 2012 at 8:19 am
I don't think that there is a way to do that. I normally try to avoid subreports if I can. I'll often bring back all the data in...
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
July 17, 2012 at 8:17 am
First couple of results from this search seem to be a good place to start for backups anyway.
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
July 17, 2012 at 7:40 am
chewychewy (7/16/2012)
Am new to profiler.
For example, I have this set up: (client side tracing)
Host A: SQL Server 2005 Production Database
Host B: Profiler GUI started and running to capture required...
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
July 17, 2012 at 7:36 am
Viewing 15 posts - 1,486 through 1,500 (of 9,643 total)