Viewing 15 posts - 331 through 345 (of 928 total)
To initially get your database structures back into sync I would use Redgate Compare. After that, whatever process you use to change the structure of your main database must also...
November 27, 2015 at 2:33 am
Is there a reason you've abandoned this thread - http://www.sqlservercentral.com/Forums/Topic1740359-364-1.aspx, where people are trying to help you?
November 27, 2015 at 1:45 am
SELECT FORMAT(GETDATE(),'dd-MM-yyyy')
is one way to do it - there are others.
I'd remove the formatting of the date from the ORDER BY - just ordering by the unformatted date would...
November 27, 2015 at 1:34 am
Please, in future post decent test data in a format that can easily be used by others - http://www.sqlservercentral.com/articles/Best+Practices/61537/.
Usually, when I see a question posted like this I just ignore...
November 24, 2015 at 4:32 am
Jacob Wilkins (11/23/2015)
November 24, 2015 at 3:47 am
You can delete or insert data by referencing a view, but the view itself only contains SELECT.
https://msdn.microsoft.com/en-GB/library/ms180800(v=sql.105).aspx
November 24, 2015 at 3:36 am
Show us your updated code, so we can tell what you have done to it.
November 24, 2015 at 3:27 am
It depends upon whether the data that you had locked was required by any overnight processes and what isolation levels were in use by those processes.
The data you hadn't...
November 20, 2015 at 10:10 am
My apologies - I mis-read the error message.
When you use IDENTITY_INSERT you also have to specify the column list for the table you are inserting into.
SET IDENTITY_INSERT [dbo].[Test_Table_1] ON
go
INSERT INTO...
November 18, 2015 at 1:46 am
Without seeing any code for the stored procedure, or DDL for the table I am assuming that the table has a column that has been created with the IDENTITY parameter....
November 18, 2015 at 1:22 am
Lynn Pettis (11/16/2015)
BrainDonor (11/16/2015)
I've lost count of the number of times I've prepared the material to explain a question, only to have found the answer in doing so.
SSC is my...
November 17, 2015 at 3:32 am
djj (11/16/2015)
November 16, 2015 at 7:59 am
I would just like to say, that I've always admired the people that are willing to publish articles on this site.
Now that I've faced the editor for this, I really...
November 13, 2015 at 7:40 am
For anyone who didn't see Hugo's presentation at SQLPASS this year - "Every time you don't specify the schema, a little angel in Heaven dies".
November 13, 2015 at 2:18 am
GilaMonster (11/12/2015)
BrainDonor (11/12/2015)
I see a lot of customers who register email addresses that are unique for this site.
You can also do things like
myname+sitename@<domain> (or maybe the other way around). GMail...
November 12, 2015 at 6:24 am
Viewing 15 posts - 331 through 345 (of 928 total)