Viewing 15 posts - 376 through 390 (of 496 total)
So you want to find any records where there is more than 1 character in the initials column? And you are saying this doesn't work for you?
where len(initiial) > 1
What...
November 12, 2013 at 9:19 am
curious_sqldba (11/12/2013)
GilaMonster (11/12/2013)
Nope. Not unless your bulk load is querying the table first. Stats do not get created or updated unless they are needed to generate an execution plan.
So bulk...
November 12, 2013 at 9:15 am
Here is a great post by Erin Stellato that talks about when/how stats get updated. http://www.sqlskills.com/blogs/erin/understanding-when-statistics-will-automatically-update/
If covers what you are trying to do and why you should worry about turning...
November 12, 2013 at 9:07 am
journey to ssc (11/12/2013)
Hii,I am trying to write a stored procedure to check whether all the columns of different tables are filled or not please help resolve problem.
You will need...
November 12, 2013 at 9:00 am
1. The select statement could block if it is part of either Repeatable Read or Serializable isolation level. So, I would first check to see what isolation level it is...
November 11, 2013 at 8:36 am
SQL Server will not move the contents of one file to another file just because it was added. Instead what is going to happen is that all new data will...
November 11, 2013 at 7:35 am
You are rolling back the transaction after you insert the errors so that is why they are displayed, but not inserted. You need to insert the errors after you rollback....
November 8, 2013 at 4:10 pm
As was suggested I would:
1. Create a permanent copy table with indexes and all on a separate file group (and underlying disks) from production. Can this copy table be...
November 8, 2013 at 7:18 am
Can it be real time i.e. transactional replication or does it have to be off hours? Does it have to be created from scratch every time? or can you gradually...
November 7, 2013 at 8:24 pm
I would create a Medal table that had each medal and their rank (gold = 1, silver = 2, etc.) then you can use something like this:
create table Medal (tmp_medal_id...
November 7, 2013 at 7:27 am
That is simply the name of the output (one of them) from the Compute Scalar operation right before the sort. Also, you have some carnality issues with this query (not...
November 6, 2013 at 9:10 pm
As far as dealing with RAM and its inherent volatility Hekaton adheres to the durable principal of A.C.I.D., so once committed the data isn't lost. With the limitations and the...
November 6, 2013 at 8:48 pm
I use database snapshots for some of the reasons mentioned above, but I also use it to run DBCC CHECKDB on my mirror instance instead of running it on the...
November 6, 2013 at 2:52 pm
Matt Crowley (11/6/2013)
November 6, 2013 at 2:17 pm
It really depends on what you consider to be "utilized". Does that mean resources, i.e. CPU, memory, I/O, etc? Does it mean user connections, batches/sec, etc? Does it mean data...
November 6, 2013 at 1:01 pm
Viewing 15 posts - 376 through 390 (of 496 total)