Viewing 15 posts - 211 through 225 (of 790 total)
More explanation in second column what data type it is, or can you post the structure of you table with these two columns ...
December 5, 2009 at 12:53 am
When you import data from Excel using wizard, the column with Date will appear in this format
yyyy-mm-dd hh:nn:ss.mss
so you can now select the imported table with formatting date...
December 5, 2009 at 12:39 am
Haa interesting route to DBA...anyway not bad recommendation! Hope to someone becoming DBA with your guide!
December 4, 2009 at 5:15 am
I agree with Lynn! Check my signature and why not to post the problem in the correct way and find the solution as better as we can!
December 2, 2009 at 7:49 am
I suggest you to upgrade in Windows 7, if you want to be comfortable with you SQL Server installation!
December 2, 2009 at 6:25 am
It will take long time if your table has lot of columns and many data types, here I'm talking for the structure of the table and all other objects related...
December 2, 2009 at 6:19 am
Ok, seems that you are in domain environment from your scenario, so you can do the database aliases in you DNS Server where you put the name for the SQL...
December 2, 2009 at 6:03 am
ekknaveen (12/1/2009)
December 2, 2009 at 5:50 am
First of All ...BACKUP everything that you have in SQL Server Express 2005.
After that, you can leave installed the SQL Server Express, and starting installation then migration to SQL...
December 2, 2009 at 5:42 am
dastagirid (11/19/2009)
Thanks alot...................Exactly This is for I asked.
You are welcome!
November 20, 2009 at 10:37 am
Steve Jones - Editor (11/19/2009)
November 20, 2009 at 1:20 am
Sorry this is for you problem:
CREATE TRIGGER CANNOT_DELETE
ON YOURTABLE
FOR DELETE
AS
BEGIN
RAISERROR ('DELETIONS ARE NOT ALLOWED!!!',16,1)
ROLLBACK TRANSACTION;
END
The code above is for the auditing the deletions!
Anyway you have 2 alternatives to...
November 19, 2009 at 7:30 am
dastagirid (11/19/2009)
I have 10 records in a table.
Now i am going to delete one record in a table.
When i have to use trigger to restrict the delete...
November 19, 2009 at 7:22 am
can you post more info about your problem ...!? Better to answer with more information if we have..anyway check BOL!
http://msdn.microsoft.com/en-us/library/aa258254%28SQL.80%29.aspx
November 19, 2009 at 5:59 am
Ok just for info about this problem that I done everything with export and inserting data to the existing table but first deleting the old data then reseeding values and...
October 23, 2009 at 2:36 am
Viewing 15 posts - 211 through 225 (of 790 total)