Viewing 15 posts - 4,021 through 4,035 (of 4,272 total)
I don't think a trigger can do this since a trigger can only handle inserts, updates, and deletes, and if one of those fails then the trigger will likely not...
July 17, 2009 at 1:29 pm
ifila (7/17/2009)
I keep getting a setup error for some reason ?I have attached a copy of the error.
Thanks
The tool you are using can help, BUT you need to extract all...
July 17, 2009 at 1:27 pm
I agree that finding useful indexes is the key, you seem to be worried about space, 8GB is really nothing. You incur costs for indexes on the write, not...
July 17, 2009 at 1:23 pm
ISO is a standard format that defines a CD or DVD disk as a single file. You can use something like the daemon tools or Nero's Image drive to...
July 17, 2009 at 10:56 am
Automagically no, but you could capture the highest value in a variable and then reset the table after..
DECLARE @maxid int
SELECT @maxid = MAX(Field1) FROM dbo.sometable
TRUNCATE TABLE dbo.sometable
DBCC CHECKIDENT( "dbo.sometable", RESEED,...
July 17, 2009 at 10:06 am
While the index tuning wizard does an ok job, performance tuning is as much an art as it is a science, the single greatest advantage we have is that mush...
July 17, 2009 at 10:02 am
How many rows are in that table? If the answer is one then fine, but I think you need to be more explicit in what you are trying to...
July 17, 2009 at 9:58 am
I have always used the one in the solution folder and not the bin folder, while they are often the same, the one in the solution folder is the last...
July 17, 2009 at 9:48 am
There is a component on Codeplex to do it from SSIS.. Let me find it...
If nothing else, it could give you some ideas on how to implement it in...
July 17, 2009 at 9:43 am
Also a good recommendation, the only reason I caution against is experience, replication is not for the faint of heart and this gentleman has expressed limited experience.. I think...
July 17, 2009 at 9:36 am
What version of SQL? 64/32?
I have to admit an 8GB db isn't all that big..
While you may have an IO bottleneck now I'm wondering if the hardware just highlighted...
July 17, 2009 at 9:32 am
1. Users and permissions are in the backup, but NOT logins, logins only exist in master, the copy may or may not need all of this depending on how the...
July 17, 2009 at 8:33 am
I have resolved that by using a lookup component to determine existence and adding a set value to the pipeline (usually a new column with the value 1), for records...
July 17, 2009 at 8:25 am
I just did a bit of research and the answer is, you can't directly in 2000.
But you could schedule a job yourself that periodically looks at sysjobs in msdb and...
July 16, 2009 at 10:41 pm
For number 2, move it to a different directory like c:\wk , 2008 is REALLY particular about stuff in the boot root...
CEWII
July 16, 2009 at 10:35 pm
Viewing 15 posts - 4,021 through 4,035 (of 4,272 total)