Viewing 15 posts - 466 through 480 (of 1,170 total)
If you use float data type then it's normal,.. and to have fixed decimal places you need to use another numeric type, e.g. decimal.
Do you use some formatting in your...
Igor Micev
September 28, 2014 at 5:09 am
Iulian -207023 (9/26/2014)
Igor Micev (9/26/2014)
The question requires two options.
Hi Igor, what options are you thinking to ?
I see the questions as a chance to challenge various aspects of the...
Igor Micev
September 26, 2014 at 1:07 pm
hakan.winther (9/23/2014)
Igor Micev (5/21/2014)
Sean Pearce (5/21/2014)
Igor Micev (5/21/2014)
Sean Pearce (5/21/2014)
Igor Micev (5/21/2014)
Sean Pearce (5/21/2014)
Igor Micev
September 23, 2014 at 12:05 pm
xp_cmdshell should be disabled from the security risk aspect. When you have xp_cmdshell enabled you're allowing processes outside sql server to do changes to databases.
I usually do that for...
Igor Micev
September 20, 2014 at 6:34 am
Priya004 (9/19/2014)
ok..if I need to compare only table schemas..can I get a query?
For e.g. if only the collation is different on the servers (which is normal to be), you'll have...
Igor Micev
September 19, 2014 at 1:33 am
Taka a look at this - http://technet.microsoft.com/en-us/library/ms143761(v=sql.90).aspx
Igor Micev
September 19, 2014 at 1:19 am
Yes you can, and you should!
If you have big tables in your database, then you can additionally use trace flag 2371 - http://blogs.msdn.com/b/saponsqlserver/archive/2011/09/07/changes-to-automatic-update-statistics-in-sql-server-traceflag-2371.aspx
Igor Micev
September 19, 2014 at 1:14 am
balasach82 (9/17/2014)
Shrinked log file. It didnt frag the indexes in the tables i am testing the Ola Hallengren script.
I have to understand the script to better customise it for my...
Igor Micev
September 17, 2014 at 10:16 am
Hi
No doubt for the Ola Hallengren scripts.
But because you're curious, I'd recommend you to just shrink the database. It should introduce high fragmentation to database tables.
Igor Micev
September 17, 2014 at 8:28 am
select c.ID,count(*) [Cnt]
from dbo.Consumer c
where c.Resource in ('RG','MI') and c.ID=119319004
group by c.ID
having count(*)=2
Igor Micev
September 17, 2014 at 8:00 am
If you haven't had issues with one tempdb file and you have the possibility to put extra files on separate physical disks (better option) then you shouldn't worry. I think...
Igor Micev
September 16, 2014 at 2:16 pm
Carlo Romagnano (9/16/2014)
WOW64, I learned something new!😀
Actually you didn't :). You'll forget about this. He'd better posted it on a forum for maths.
However, interesting ...
Igor Micev
September 16, 2014 at 1:59 pm
How about to see the CDC option for that table.
Link to start - http://technet.microsoft.com/en-us/library/bb522649(v=sql.105).aspx
Igor Micev
September 10, 2014 at 1:53 pm
Viewing 15 posts - 466 through 480 (of 1,170 total)