Viewing 15 posts - 16 through 30 (of 51 total)
Above example is only for reference and not the perfect solution.
May 27, 2013 at 1:16 am
DECLARE @GblTableName NVARCHAR(300)
SET @GblTableName = '[tempdb].[dbo].[Temp' + REPLACE(CAST(NEWID() AS NVARCHAR(50)), '-', '') + ']' ...
May 27, 2013 at 1:15 am
U can try out with ##temp tables that is (global temp table) use this only u can not find with #temp.
Moreover, u can create physical temp table in tempdb. that...
May 27, 2013 at 1:10 am
U should keep format of 'YYYY-MM-DD' while insert from VS..
January 8, 2013 at 9:19 pm
You should keep it to simple recovery model, untill u dont think your all transactions should logged in log file till the database backup process and it increses size...
January 8, 2013 at 3:38 am
I would say, u can update columns by N/A because u later don't have to handle from .net as sql server is more faster in compare to .net and it...
January 8, 2013 at 3:20 am
DateTime Range : January 1, 1753, through December 31, 9999
DateTime2 Range : 0001-01-01 through 9999-12-31
January 1,1 AD through December 31, 9999 AD
January 8, 2013 at 3:12 am
This is bacause u have taken field as DateTime, u should try DateTime2 insted.
January 8, 2013 at 3:08 am
Best way is to use union for all condition..
January 8, 2013 at 2:51 am
Hi,
Try this..
Hope this will help
SELECT OutTab.ID ,
Names =
STUFF (...
January 8, 2013 at 2:36 am
There will no windows log,
Sql manages internally and u can access it through sql only.
January 7, 2013 at 3:46 am
if u want to go ahead with database side, i will insist to go for microsoft certification. it can be recognized all over the world.
The 'Data Platform' exams are:
70-461: Querying...
January 7, 2013 at 3:43 am
Hi Gila,
Can u please share from where u are getting pass videos, I know this is silly as u must attend summits but is it available for those who can...
January 3, 2013 at 4:57 am
Viewing 15 posts - 16 through 30 (of 51 total)