Viewing 15 posts - 361 through 375 (of 441 total)
Hi,
Please let us if you are facing any problem. If youa re not clear on the process then Check out the below link
http://support.microsoft.com/default.aspx/kb/321686
Thanks -- VJ
July 3, 2008 at 12:54 pm
hi,
You can't implement this logic in DB side, it would be easier to have this logic in Front-end application.
Thanks -- Vj
July 3, 2008 at 12:51 pm
HI,
it would be great if you can post some sample data and your requriement so that we can help you in writing the right query.
Thanks - Vj
July 3, 2008 at 12:16 pm
Hi
It depends on your background if you are from Java then you can learn C# otherwise VB is good.
Thansk -- VJ
July 1, 2008 at 5:30 pm
July 1, 2008 at 5:25 pm
Hi,
Check out the below link
http://www.dotnetspider.com/resources/1266-Split-e-String-Using-char-separator.aspx
Thanks -- Vj
July 1, 2008 at 12:35 pm
Hi
You can use the PIVOT and UNPIVOT relational operators to change a table-valued expression into another table. PIVOT rotates a table-valued expression by turning the unique values from one column...
July 1, 2008 at 12:05 pm
June 30, 2008 at 2:13 pm
Hi
1. Check if temporary table exists...
IF OBJECT_ID('TempDB..#temp_table','U') IS NOT NULL
PRINT 'Temp Table Exists'
ELSE
PRINT 'Temp Table Doesnt Exists'
2....
June 30, 2008 at 2:09 pm
Hi
Please verify the data lenth of the datatype. I am sure this is causing the problem.
Thanks -- Vj
June 30, 2008 at 1:00 pm
Hi
You should provide more description on your questions so that we can answer in better way.
if you are looking for something to modify the textfiles using T-SQL then check out...
June 30, 2008 at 12:58 pm
June 27, 2008 at 9:03 pm
Hi
Use the below query,
-- Last Sunday (Inclusive)
SELECT DATEADD(day, DATEDIFF(day,
0 /* Any Base Date */,
GETDATE()) - (DATEDIFF(day,
6 /* Base Sunday Date */,
...
June 27, 2008 at 8:51 pm
Hi are you sure its an issue with order by clause? why dont you remove order by and try the query. If you are getting the same error then its...
June 27, 2008 at 5:03 pm
Hi,
DELETE FROM table_xx WHERE A + B + C IN (
SELECT A + B + C FROM table_1 where A + B + C NOT IN ( SELECT A +...
June 27, 2008 at 5:01 pm
Viewing 15 posts - 361 through 375 (of 441 total)