Viewing 15 posts - 61 through 75 (of 197 total)
An incomplete answer that generates a syntax error cannot possibly be a correct answer, therefore only option 4 is correct. 😀
--Method 2:
--use the internal structure of datetime(2)
cast(cast(reverse(substring(cast(@t as binary(9)),2,5))
...
November 8, 2012 at 8:15 am
I recommend you read Paul Randal's blog about backup myths: http://sqlskills.com/blogs/paul/post/A-SQL-Server-DBA-myth-a-day-(3030)-backup-myths.aspx
30-05) a full or differential backup clears the log
No. A log backup includes all the log since...
November 8, 2012 at 7:03 am
Thanks for this
Do you know of a way to check if my an instance is experiecing a plan cache bloat? What I mean is, how can I check what the...
November 7, 2012 at 12:14 pm
Check out the following: http://www.sqlservercentral.com/Forums/Topic1340744-391-1.aspx
If you order by Virtual_memory_committed_kb, you should see MEMORYCLERK_SQLBUFFERPOOL as the largest consumer of memory.
select * FROM sys.dm_os_memory_clerks
order by Virtual_memory_committed_kb desc
I'm still trying to...
November 7, 2012 at 11:45 am
SQLSACT (11/7/2012)
kylesway (11/7/2012)
These are cached SQL statements or batches that aren't in stored procedures, functions and triggers. This includes any dynamic SQL or raw SELECT statements sent to...
November 7, 2012 at 11:11 am
rocky_498 (11/7/2012)
to find out Fragmentation Level is more than 30% in the database
DECLARE @DBId INT
SET ...
November 7, 2012 at 10:58 am
Hit the wrong button... 😀
To undo the operation, I right clicked on the Replication Folder and selected Disable Publishing and Distribution. I then seleced the Yes, Disable Publishing on this...
November 7, 2012 at 10:04 am
montse 22199 (11/7/2012)
Thanks so much for your suggestions. I will do that, I am programming to do it today in the evening..wish me luck!
First and foremost, my advice would be...
November 7, 2012 at 10:01 am
Ratheesh.K.Nair (11/7/2012)
Hi Experts,Is there any problem if developers create user SP on master DB??
It depends on what you mean by "problem" and what the stored procedure is doing. While it's...
November 7, 2012 at 9:28 am
Sqlism (11/6/2012)
i dont see anything mentioned in the link that we can change port 1433 as port number for default instance,
i am sure we can change it...
November 6, 2012 at 3:56 pm
Animal Magic (11/6/2012)
http://sqlblog.com/blogs/adam_machanic/archive/2012/03/22/released-who-is-active-v11-11.aspx
Hope there isn't any issues...
November 6, 2012 at 1:53 pm
We referred to that as an ID 10 T error...
November 6, 2012 at 9:20 am
I'm trying to find the cause of blocking on my system
If you are truly trying to find the cause of the blocking that is occurring on your system, then...
November 6, 2012 at 9:19 am
mahesh.dasoni (11/5/2012)
Require Sql Server 2008 dumps for Certification
Your best sources for material to study for the exam are SQL Server Books on Line, the MSDN site, this SQLServerCentral.com site, and...
November 6, 2012 at 8:54 am
Viewing 15 posts - 61 through 75 (of 197 total)