Viewing 15 posts - 256 through 270 (of 295 total)
If your update is not parameterised, the problem could be due to occasional single quote characters in the input, eg.
Update MyTable set Surname = 'O' Connor'
The update statement would terminate...
July 29, 2014 at 1:50 am
Why are duplicate companies a problem? I would expect at least a few cases where you have more than one contact at a particular company.
July 24, 2014 at 2:54 am
My guess is that they're using some tool to import data. Many of these tools offer the option to disable triggers during import and it's often the default setting.
Chris
July 24, 2014 at 2:47 am
If you decide to go ahead with the change, my recommendation would be to build empty databases with the new collation and copy the data across with a tool such...
July 24, 2014 at 2:34 am
Sorry, I can't point you in the direction of any specific SOX documentation; the work I did was over 8 years ago at a different employer. We didn't go through...
July 23, 2014 at 1:43 am
I'd add one thing to Craig's post; SOX isn't just about data - you need the paper trail for code changes too (table/view definitions, stored procedures, functions, triggers, etc.).
Chris
July 22, 2014 at 7:45 am
John,
all our C# applications use stored procedures to change data; it's the easiest way to set up the security so that users can do only what you want them to...
July 10, 2014 at 8:15 am
+1 for Luis' post. The query results grid in SSMS was never intended as an end-user reporting tool; there are separate purpose-built tools for that. I use the SSMS grid...
July 3, 2014 at 7:56 am
I also put "Just B" on the basis that ordering by name in query C isn't guaranteed.
June 26, 2014 at 3:53 am
I was thinking of * in it's Unix/Windows context as meaning 'All' rather than 'Star'. You can thank Douglas Adams for my original answer.
I do know what it actually returns,...
June 20, 2014 at 3:35 am
Surely SELECT COUNT(*) should return 42?
June 20, 2014 at 2:45 am
We had SQL_Latin1_General_CP1_CI_AS on our 2005 server and most of the existing databases and were moving to Latin1_General_CI_AS on the 2008 server.
In Visual Studio, I used the option to generate...
May 29, 2014 at 1:58 am
Note: with Visual Studio 2013, you do get the SQL tools with the Professional version.
May 28, 2014 at 2:01 am
I have just completed a project with exactly the same issue you had. We decided to go for the rebuild/reimport data option to get the database collations the same as...
May 28, 2014 at 1:53 am
Viewing 15 posts - 256 through 270 (of 295 total)