Viewing 15 posts - 16 through 30 (of 87 total)
Not entirely sure I understand the question. Generally, store the time as UTC in the database, and let the client convert to local time.
April 25, 2014 at 11:07 am
NineIron (4/17/2014)
Thanx. So, what's the advantage of adding an index to a view?
When you access a non-indexed view, SQL will expand the query that defines the view to access the...
April 17, 2014 at 2:42 pm
You can use a file connection manager, or build one dynamically using variables and\or expressions. Dynamic is good for things like adding the time to a file, such as
dailyfile20140414
dailefile20140415
...
April 16, 2014 at 7:33 am
SSIS File System Task:
http://technet.microsoft.com/en-us/library/ms140185(v=sql.105).aspx
April 16, 2014 at 7:07 am
SQL Profiler. Possible Extended Events as well, but I am not sure about that.
April 16, 2014 at 7:04 am
Jagadeesh Chowdary (4/15/2014)
Hi Sir,Please Find the Below Error message
Message
Executed as user: MERIX-PC\SYSTEM. The step failed.
Looks like your SQL Agent service is not using a domain account, but the local system...
April 15, 2014 at 5:48 am
Create a baseline to see what current server utilization is. You may be able to add dozens more databases to the existing environment, or you may be already overloaded.
Here...
April 14, 2014 at 1:27 pm
I would also consider taking a look at Ola Hallegren's scripts. He has lots of documentation. The "recommended" maintenance is if fragmentatation is over 30%, rebuild, if it...
April 10, 2014 at 7:46 am
What is the current fragmentation level, and how large are your indexes?
April 4, 2014 at 7:53 am
Continuing on a theme here, not all databases are equal, so comparing the number of managed databases is a faulty metric. Managing 100 databases that support (well developed) third...
April 4, 2014 at 7:46 am
run 'sp_who2' and see what processes are running under your account. You can then take that SPID and follow SQL Guy 1's instructions.
April 3, 2014 at 2:34 pm
Replication needs to read the transaction log. If you stop replication, that may cause the log to grow even more.
What caused the log to grow in the first place?...
April 3, 2014 at 2:31 pm
SQL actually keeps track of how often an index gets used, and that info is accessible via the dm_db_index_usage_stats DMV.
Take a look here: https://www.simple-talk.com/blogs/2012/08/08/a-quick-look-at-dm_db_index_usage_stats/
April 3, 2014 at 11:52 am
IT researcher (1/22/2014)
1)I have a database which grows about 300 MB every...
January 22, 2014 at 8:34 am
Good news!
I would document the incident, including timelines. The time that the database was offline has an associated cost. That is what you need to use when someone says...
January 22, 2014 at 8:25 am
Viewing 15 posts - 16 through 30 (of 87 total)