Viewing 15 posts - 12,991 through 13,005 (of 15,381 total)
Read this article about NO LOCK and dirty reads. It is more than just non-committed transactions and it is by no means a magic "go fast" pill.
http://sqlblog.com/blogs/andrew_kelly/archive/2009/04/10/how-dirty-are-your-reads.aspx
A few questions:
What are...
February 13, 2012 at 8:37 am
joe.cahoon (2/13/2012)
One question, and I'm still new to using SQL,
declare @Date varchar(10) = '12/3/2012'
declare @Time varchar(20) = '10:33:31 PM'
select CAST(@Date + ' '...
February 13, 2012 at 8:20 am
http://www.sqlservercentral.com/articles/T-SQL/63681/%5B/url%5D
Make sure you read and then follow along to the second article about how to make this dynamic.
February 13, 2012 at 8:07 am
joe.cahoon (2/13/2012)
I agree, I wished who ever initially set these up did so in a different way, but I have to work with it regardless.
The date and time are in...
February 13, 2012 at 8:01 am
ekknaveen (2/13/2012)
RAISED THIS IN ACCESS FORUM, BUT IF ANY OF THEM CAN GIVE ME A IDEA OF HOW TO GET IT IN ACCESS, WILL BE GREAT
Try this link. http://bit.ly/zjNFeT
February 13, 2012 at 7:54 am
memymasta (2/13/2012)
I got this query..
Select a.a from a LEFT JOIN b ON a.a=b.b WHERE b.b IS NULL
Is it possible to get same results with
Select a.a from a LEFT...
February 13, 2012 at 7:49 am
joe.cahoon (2/13/2012)
Here's what I have to work with in these tables,
Table_1
HeatNumberID (PK,varchar(50),not null)
Start_Time (text,null)
Start_Date (text,null)
...
February 13, 2012 at 7:46 am
Like this?
declare @MyVar varchar(10)
set @MyVar = null
February 13, 2012 at 7:40 am
Great question and excellent scenario setup. I am quite surprised that at the time I am posting there are 417 answers and 16% of them still think truncate is not...
February 13, 2012 at 7:39 am
Keep in mind there is no such thing as next or previous rows. They have no order until you add an order by clause. It appears that you want to...
February 10, 2012 at 2:39 pm
Get a dev environment setup and try it out. There shouldn't be any issue but it is impossible to say that for sure. The ONLY way you can be sure...
February 10, 2012 at 1:28 pm
No worries. Now you have an example of what you should provide for next time. 😉
February 10, 2012 at 12:47 pm
It is best for these types of questions if you can post ddl and sample data along with desired results based on your sample data. I created the ddl and...
February 10, 2012 at 12:42 pm
Aside from the very painful structure and naming convention, I am not sure what the issue is. You will return the result of the union of all those select statements....
February 10, 2012 at 12:34 pm
Steve Jones - SSC Editor (2/10/2012)
Worth the read: http://www.newyorker.com/reporting/2011/10/03/111003fa_fact_gawande
Sounds bit like another profession we are all familiar with. Thanks for the article.
February 10, 2012 at 12:17 pm
Viewing 15 posts - 12,991 through 13,005 (of 15,381 total)