Viewing 15 posts - 46 through 60 (of 2,267 total)
Apex SQLlog will also tell you who made the changes.
November 2, 2011 at 3:17 am
have a look at the round function and divide by a factor of ten to move the decimal.
though the example you have given show incosistent behaviour where some values are...
November 1, 2011 at 3:57 am
November 1, 2011 at 3:51 am
524,272 terabytes
so should be enough for most systems.
it's all in here
October 31, 2011 at 7:12 am
to move the decimal place divide or multiple by a factor of 10..
eg
select CAST( round((1029097.95790000/1000),5) as numeric(10,6))
October 31, 2011 at 6:51 am
tommey152 (10/31/2011)
steveb. (10/31/2011)
Your current dataype can support Five digits in front of...
October 31, 2011 at 5:57 am
with a stored procedure that will cause an error.
actually it may not always cause an error but it will not do what the hacker is trying to do.
Try it...
October 31, 2011 at 4:46 am
The precision and scale of your datatype is not large enough to support that number at that accuracy.
Your current dataype can support Five digits in front of the decimal and...
October 31, 2011 at 4:45 am
in my view, yes that is the best way to access your data. As it will help with security and provide a layer between the data and the application.
October 31, 2011 at 4:37 am
One of the best ways to prevent it, is to use stored procedures for data manipulation, and then call these stored procedures from your application/website.
October 31, 2011 at 4:28 am
It depends on what level of documentation you require.
There are some tools out there that will create ssis documentation for you, a google search will bring them up, but...
October 29, 2011 at 3:19 pm
I still think a staging table and a Merge is your best bet for performance when it comes to upserts, but if you can let us know a bit...
October 28, 2011 at 4:26 pm
I dont think that you can call the procedure in that way with a object, you really need to call the procedure with a single value for each parameter.
What...
October 28, 2011 at 10:45 am
you are trying to create a table that already exists ('shift')
either check the table exists first, and drop the table before the create script, or bypass the create script all...
October 28, 2011 at 10:36 am
The N is not specific to restores, it is the way of telling sql server that the string value could be unicode.
The stats is a percentage showing how often...
October 28, 2011 at 4:11 am
Viewing 15 posts - 46 through 60 (of 2,267 total)