Viewing 15 posts - 1,486 through 1,500 (of 9,641 total)
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...
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...
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...
July 18, 2012 at 8:15 am
pwalter83 (7/17/2012)
SQLRNNR (7/10/2012)
A better description...
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...
July 17, 2012 at 9:56 am
gerard-593414 (7/17/2012)
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...
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...
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 *...
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...
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...
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.
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...
July 17, 2012 at 7:36 am
But how do you know that it is really the same account? How is the customer number created?
I think what you really want is MERGE. IN a nutshell...
July 17, 2012 at 7:26 am
Based on the business rules you have provided, having a duplicate customer number IS an error and a unique constraint or a primary key are the only ways to guarantee...
July 17, 2012 at 6:45 am
Viewing 15 posts - 1,486 through 1,500 (of 9,641 total)