Viewing 15 posts - 22,126 through 22,140 (of 39,824 total)
The cause of this problem is people with nothing better to do than deface others' property.
It's a SQL Injection issue. You need to make sure you are not allowing SQL...
September 30, 2009 at 8:53 am
What are the errors?
A few things to check:
- Are the files written correctly to the different folders? Meaning they look like the correct log backups from the source systems
-...
September 30, 2009 at 8:45 am
Most software, or services, cost some decent $$. If you can get by with less features, OSTRESS (http://support.microsoft.com/kb/887057) might owrk for you.
September 30, 2009 at 8:43 am
In T-SQL, you'd have to import the data into a table.
In SSIS, there might be a way, but you'd have to read the text file and check each row for...
September 30, 2009 at 8:36 am
Naming conflict somewhere? maybe with the job names? I assume the dbs are differently named?
September 30, 2009 at 8:35 am
I'll add in, what is the amount of data you can lose? Or can deal with a loss? how quickly do you need to recover?
I use diffs to keep daily,...
September 30, 2009 at 8:34 am
I'd agree that you want to do it in both places. However, I'd load the validation domains, list of choices, from the db into the middle layer. Find a way...
September 30, 2009 at 8:31 am
Usually you do not want to do things in a looping manner in SQL Server. The db engine is optimized to do things with sets of data.
If you don't know...
September 29, 2009 at 2:04 pm
Can you post the DDL for both tables? Basically you'd
insert Destination (col1, col2, col3, col4)
select col1, col2, default_for_3, default_for_4
from SourceTable
September 29, 2009 at 11:03 am
It's hard to say what you should do. Is the data needed there?
You have 2 choices.
1. Put the columns that are in the source in the list and then use...
September 29, 2009 at 10:50 am
If you feel someone using the product is good enough, then that's your opinion. You shouldn't push that on others, or assume that other software developers feel the same way....
September 29, 2009 at 10:49 am
Yes, but be sure this is what you want. In a FK, you have to remove all children before you can remove a parent. Note that you might have multiple...
September 29, 2009 at 10:47 am
The queries will not likely have memory leaks. You're using basic SQL that has been exhaustively tested. I guess it's possible, but I haven't seen it in years of doing...
September 29, 2009 at 10:24 am
Open Source != free. It means that someone is allowing you to see how the code works.
Lots of these little utilities are written by someone that does it in their...
September 29, 2009 at 10:22 am
You are trying to delete rows that have a FK reference. You need to delete the child rows before you can remove the parent.
September 29, 2009 at 10:18 am
Viewing 15 posts - 22,126 through 22,140 (of 39,824 total)