Viewing 15 posts - 496 through 510 (of 928 total)
If you concatenate strings together and one of them contains NULL then the result will always be NULL (unless you've played with the default CONCAT_NULL_YIELDS_NULL setting).
Have a look at ISNULL,...
December 3, 2013 at 5:01 am
Well, finally done it. Created a blog site via WordPress.com (because I really don't want to mess around any more than I need to). Basically somewhere to leave useful information...
November 8, 2013 at 10:06 am
This article shows you how to post enough information to be helpful to everyone that is willing to assist you:
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
Once enough information is supplied there will be no end of...
November 7, 2013 at 2:09 am
'NAME' is in the SELECT but it is the fourth column and has been described as the first column in the column names list.
Remove the column names so it read...
November 7, 2013 at 1:36 am
No, you have a misunderstanding about this.
When you create a snapshot of a database it needs to know about all of the data files that belong to the database. These...
November 4, 2013 at 1:57 am
Look at the files that make your database, the easiest way is via SSMS - right-click on the db/properties/Files.
Do you actually have a file called 'Exhibitor_Data'?
November 4, 2013 at 1:11 am
You could use Row_Number to allocate a number to each row, partitioning by all of the columns. Then remove any row where the number is greater than 1.
November 4, 2013 at 1:01 am
Ivan Mohapatra (10/31/2013)
hi all,guys need your help and suggestion
T- log backup is creating blocking in prod server.what to do plz suggest.
http://www.sqlskills.com/blogs/paul/a-sql-server-dba-myth-a-day-3030-backup-myths/
Bearing in mind point 30-01 in that article, what...
October 31, 2013 at 7:08 am
Stop the service before you defrag a hard-drive. Any errors during the defrag and you'll have a corrupt database - it isn't worth the risk.
Make sure you have a backup...
October 23, 2013 at 3:19 am
I may have misunderstood your intention with this code, so could I just check?
You appear to be selecting data from scd.dbo.semp1 where Statuscode is 1, into @testingtable. Then you select...
October 17, 2013 at 6:48 am
Is it always showing a blank result or NULL?
This is important, because if you concatenate strings together and one of them contains NULL then the result will always be NULL...
October 4, 2013 at 4:09 am
Thanks for that Grant. I saw the Table Variables but it just didn't register. "Looked But Failed To See" - it will be on my headstone one day.
October 1, 2013 at 4:06 am
Could somebody with more experience with Execution Plans have a look at this thread please - http://www.sqlservercentral.com/Forums/Topic1498743-23-1.aspx ?
Because I've never used OPENQUERY outside of idle curiosity I don't know if...
October 1, 2013 at 3:27 am
All of the date manipulation bits you should ever need: https://www.simple-talk.com/sql/learn-sql-server/robyn-pages-sql-server-datetime-workbench/
October 1, 2013 at 1:18 am
Is this a printed version of the Stairways articles on SSC http://www.sqlservercentral.com/stairway/72401/?
September 30, 2013 at 3:17 am
Viewing 15 posts - 496 through 510 (of 928 total)