Viewing 15 posts - 1 through 15 (of 21 total)
SPID 69 is updating Status table while SPID 77 is selecting the same table.
SPID 69 is holding IX lock on page 5:3:695694 and trying to lock (IX) another page (5:3:695693).
In...
October 29, 2013 at 3:32 pm
Can be both and/or can be used in N-tier architecture....
If your client app is accessing SQL Server directly, it can be considered as 2-tier app.
If your client app is accessing...
February 27, 2013 at 2:43 pm
How to shrink transaction log file: http://bit.ly/XaDOQr
January 28, 2013 at 5:51 pm
SSMS has generate script wizard which exports all schema scripts and insert TSQL statements (if Script Data is true). The same/similar wizard (Database Publsihing Wizard) is available in Server Explorer...
February 6, 2012 at 5:57 pm
1. What is the recomendation for analysys server configuration to put temp directory and back up derectory to which drive? http://technet.microsoft.com/en-us/library/cc281997.aspx
2. Is sa account for this installation needs to be...
December 13, 2011 at 4:21 pm
I felt that smtp mail is kind of tricky sometimes since
different web hosting vendors use different mail policies...
http://webbeyond.blogspot.com/2011/09/send-email-in-aspnet-from-arvixe-web.html
http://webbeyond.blogspot.com/2011/11/godaddy-email-error-553-sorry-your-mail.html
December 6, 2011 at 5:05 pm
SQL query data (or table) can be exported to Excel by using this handy tool.
Another way might be you bcp out the data into .csv and...
December 6, 2011 at 4:50 pm
AFAIK, Connection pooling is based on exact match of connection string.
If you use different application name, new connection pool will be created.
I think this is by design.
December 5, 2011 at 6:11 pm
Right, connectionstrings.com/sql-server-2008 is a good resource.
Just FYI. Here is an example:
string strConn = "Data Source=(local);Initial Catalog=pubs;Integrated Security=SSPI;";
SqlConnection conn = new SqlConnection(strConn);
conn.Open();
// Do something here
conn.Close();
// Data Source=serverName
// Initial Catalog=dbName
December 5, 2011 at 6:03 pm
Year() and Month() function returns int data.
.....
WHERE NOT EXISTS
(SELECT empid
FROM Sales.Orders
WHERE YEAR (orderdate) = 2007 AND <==
MONTH (orderdate) = 02) <==
December 5, 2011 at 4:52 pm
Here is step-by-step procedure of how to enable FILESTREAM and how to use it from SQL and in C#.
December 5, 2011 at 4:40 pm
I think this is an interesting issue. Since Henry_Lee is talking about client protocols, not server protocols, SQL server recylcling is not required.
My understanding is that SSMS is trying...
October 19, 2011 at 5:38 pm
This tool converts SQL table or SQL query resultset to Excel.
NULL will be replaced by empty string by default.
October 19, 2011 at 3:52 pm
Please refer to the following blog.
September 16, 2011 at 11:54 am
If you want to save the SQL query result into Excel,
you can use this handy tool.
September 13, 2011 at 11:19 am
Viewing 15 posts - 1 through 15 (of 21 total)