Viewing 15 posts - 16 through 30 (of 72 total)
happycat59 (10/14/2014)
Msg 156, Level 15, State 1, Procedure my_sp, Line 2
Incorrect syntax near the keyword 'FROM'.
because "Column" is a reserved keyword and needs to be delimited if you...
October 14, 2014 at 10:38 pm
Jeff Torres (10/12/2014)
Shiva,Why are there Chinese characters for the following data types and what do they mean?
,[Nchar22] NCHAR(10) DEFAULT('????')
,[Nvarchar23] NVARCHAR(10) DEFAULT('?????')
,[Ntext24] NTEXT DEFAULT('????')
Jeff
Jeff varchar follow non Unicode characters while nvarchar...
October 12, 2014 at 9:55 am
Thank you dear, I will get back to you on monday.
Happy weekend.
October 10, 2014 at 10:09 am
I didn't find any error, Will you show me complete error-
This will help others too.
October 10, 2014 at 8:56 am
Hi Shiva,
Great job,
still i find one column empty.
you may use either ,[Uniqueidentifier10] UNIQUEIDENTIFIER Default NEWID()
at create table statement or INSERT INTO tblWithAllDatatypes (bit1,Uniqueidentifier10)
select null,NEWID();
October 8, 2014 at 2:27 am
Vimal Lohani (9/25/2014)
Is it possible to get all information about modification of sql objects,
For eg. I have stored procedure i have altered it 5 times, can i get all date...
September 25, 2014 at 8:02 am
uff, what a question, so concentration required.
my (70-461) preparation, helped me to solve this.
September 23, 2014 at 11:53 pm
spectra (9/20/2014)
DBA From The Cold (9/19/2014)
Safest way is through the SQL Server Configuration Manager.Right click the database engine service and choose stop. Be aware this will immediately stop the service!
There...
September 20, 2014 at 11:16 pm
Hi asrinu13,
May you have some constraint in ref table, Please check it.
Other wise no problem in transferring data from one table to another.
Create table #temp1 (id int, name nvarchar(20), salary...
September 19, 2014 at 12:08 am
Interesting and Important for (70-461) preparation.
+1
September 18, 2014 at 10:45 pm
Use
RESTORE FILELISTONLY FROM DISK = '<FILELOCATION>' WITH FILE = 1
GO
OR
restore headeronly from disk = 'c:\restore.bak'
If you will get null null in all columns then either the backup is corrupted or...
September 17, 2014 at 10:51 pm
+1
September 17, 2014 at 10:46 pm
Viewing 15 posts - 16 through 30 (of 72 total)