Viewing 15 posts - 16 through 30 (of 142 total)
Hi Team,
Want to execute a single query to fetch the numberic and alphanumeric values with following two queries
select cast(data as integer) from record_tab where ISNUMERIC(data) =...
July 8, 2015 at 8:37 am
How to remove first and last char from below select query
SELECT LTRIM(RTRIM(REPLACE('Micro Soft','M','m')))
output should be : 'icro Sof
June 5, 2015 at 3:13 am
Hi Team,
Above T-SQL code is exactly resolved my requirement, but i've two database tables (@replacements, @theStrings), how to use the below code with actual tables.
WITH rep AS (
SELECT string_id, theString...
May 26, 2015 at 2:36 am
Is there any possibility to export from SSMS without addins.
April 27, 2015 at 3:13 am
Hi Team,
The solution provided by are working fine..
but there is a change in my result.
my request is
if a record_1 is in Table_A and Table_B, then
output : record_id_1 :...
April 21, 2015 at 6:37 am
Trying to access using below statement, but no results.
exec master.dbo.xp_dirtree "\\113.218.216.127\New folder\txt\", 1, 1
Please help to acccess the files names from different machine.
March 30, 2015 at 4:26 am
Hi Team,
How to get the details from another server which does not have sql server installed on that machine.
March 30, 2015 at 3:52 am
Thank you, Thank you.
Its working good.
March 26, 2015 at 6:54 am
Table 1:
id | codes
----------------
001 | a,b,c
002 | e,g,t
003 | r,t,y,e
eg:
Desc_id | Code | Desc
--------------------------
001 | a | artb
002| b | byt
003| c...
January 6, 2015 at 7:12 am
Hi Team,
If there any possiblity to replace below char's in code column with string in another table.
id | codes
------------
001 | a,b,c
002 | e,g,t
003 | r,t,y,e
without using split function.
January 6, 2015 at 5:57 am
using above function, but how to include in view..
January 6, 2015 at 4:55 am
create function splitstring
(
@input nvarchar(max),
@character char(1)
)
returns @output table (
...
January 6, 2015 at 4:54 am
What exactly is this trigger supposed to do? Insert exactly the same value into a table every time any row is updated or deleted?
Yes,
Insert exactly the same value...
November 24, 2014 at 6:14 am
Thank you for your info..
i want to trigger in two scenaios,
1) after update - insert statment
2) and before delete - insert statement.
please suggest in above scenaio
November 24, 2014 at 5:58 am
Viewing 15 posts - 16 through 30 (of 142 total)