Viewing 13 posts - 1 through 13 (of 13 total)
Hey guys, I have some noob questions.
What is "fish-tank" and "flagpole" term means?
July 22, 2012 at 10:17 pm
First post?
Also, excellent article!
July 19, 2012 at 1:08 am
Hi Cadavre and everyone!
Thanks for your help! I really appreciate it.
I didn't know a simple UNION approach will solve this problem. Now I know the difference between UNION and UNION...
November 27, 2011 at 6:34 pm
LutzM (11/24/2011)
SELECT Date2 AS DateOutput FROM YourTable
??It's most probably not the code you're looking for, but it's a valid solution based on your sample data... You might want to...
November 24, 2011 at 6:08 pm
Hello to both of you, thanks for your help.
And to clarify, yes my source table will never have overlapped values of From and To.
Thanks again!
November 7, 2011 at 9:54 pm
Here is my solution:
DECLARE @TableResult TABLE(
Value1 INT
,Value2 INT
)
DECLARE @Value1 INT, @Value2 INT
DECLARE @cur CURSOR
SET @cur = CURSOR FOR
SELECT Value1, Value2 FROM Tester ORDER BY Value1 ASC
OPEN @cur
FETCH NEXT FROM @cur...
November 7, 2011 at 8:21 pm
i use this:
ALTER DATABASE Northwind SET SINGLE_USER WITH ROLLBACK IMMEDIATE
EXEC sp_dboption 'Northwind', 'single user', 'FALSE'
March 8, 2011 at 12:49 am
Hi Tom, if you still having trouble, you can try my workaround it works perfectly.
I found the code (of course I modified it for my case) on other site but...
February 28, 2011 at 9:42 pm
I have resolved my problem. I create custom console application to upload file to document library, and then execute it from SSIS via Execute Process Task.
But I wonder, I have...
February 27, 2011 at 7:25 pm
Hi ssills, thanks for replying.
Do you know how to create (or get) UNC path from SharePoint Document Library?
February 25, 2011 at 1:10 am
Hi, thanks for replying.
That should do it. But is there any built-in function in T-SQL I can use to convert them?
Thanks again. 😀
December 9, 2010 at 1:28 am
Use SQL Profiler to trace your query.
November 14, 2010 at 8:42 pm
Thanks for replying. It is good right now. 😉
November 10, 2010 at 9:40 pm
Viewing 13 posts - 1 through 13 (of 13 total)