Viewing 15 posts - 61 through 75 (of 193 total)
Luis Cazares (8/5/2015)
Kutang Pan (8/5/2015)
Thanks for that. I've started preparing a list of some Q/A but i can't find a nice one about dynamic sql writing. I would like...
August 5, 2015 at 7:58 am
Hi Luis,
Thanks for that. I've started preparing a list of some Q/A but i can't find a nice one about dynamic sql writing. I would like check the candidates basic...
August 5, 2015 at 7:46 am
vipin_jha123 (8/5/2015)
BULK INSERT ##MD_GEOGRAPHYLEVELTYPE
FROM 'H:\Spectrum_V2_ETL\Loading_Geography_Table_Data\Loading_Geography_Table_Data\MD_GEOGRAPHYLEVELTYPE_US.txt'
WITH ( FIELDTERMINATOR =',', FIRSTROW = 9 )
error
Msg 4861, Level 16, State 1,...
August 5, 2015 at 12:46 am
You can use BULK INSERT
have a look here https://msdn.microsoft.com/pl-pl/library/ms188365(v=sql.110).aspx
August 5, 2015 at 12:45 am
August 4, 2015 at 8:39 am
if your query will return only one row, the code will work, but more then that it will fail because you can't assign many rows into a varchar variable using...
August 4, 2015 at 6:24 am
I'm a foreigner in UK and already have a 3’rd position working as DBA/DB Dev, never had a problem with nationality.
August 4, 2015 at 6:14 am
i assume Temp_Table contains many rows thats why you can't assign all of them to one variable.
What is the output you expecting? I can;t see declaration of @TheUser is that...
August 4, 2015 at 6:00 am
What country are you talking about?
August 4, 2015 at 5:55 am
Try this query, should give you the same result
SELECT COUNT(a.dex_row_id)
FROM (SELECT dex_row_id, ROW_NUMBER() OVER (PARTITION BY idfaktury ORDER BY dataexportu DESC) AS RowNo
FROM...
July 29, 2015 at 8:09 am
GilaMonster (7/28/2015)
abhishek_300 (7/27/2015)
How to get the last record value in sql server without using MAX/TOP clause?
Answer: Why are you enforcing silly and unrealistic restrictions on my code? Should I be...
July 28, 2015 at 6:46 am
you can as well try sp_helpExpandView from Andy Yun to understand what is lying underneath your views
https://sqlbek.wordpress.com/2015/03/03/debuting-sp_helpexpandview/[/url]
July 22, 2015 at 3:46 am
Have a look here
http://sqlandme.com/2011/07/13/sql-server-login-auditing-using-logon-triggers/[/url]
July 20, 2015 at 2:14 am
did someone do Insert on replicated table on subscriber? i would say reinitialize subscription.
July 16, 2015 at 12:42 am
Just a wild guess but maybe Adam Machanic sp_WhoIsActive can do that?
July 15, 2015 at 8:58 am
Viewing 15 posts - 61 through 75 (of 193 total)