Viewing 11 posts - 1 through 11 (of 11 total)
Try this: [ORDERDATE] == "" ? DT_DATE : RIGHT([ORDERDATE],4) + "-" + SUBSTRING( ORDERDATE, 4, 2 ) + "-" + SUBSTRING( ORDERDATE,1,2)
March 12, 2012 at 3:38 pm
Yes, I just missed it, you have to list columns or use * for all columns as: (select top 1 * from _TOPICS
February 19, 2011 at 8:00 am
If you want be sure that related record exists in all tables:
SELECT _TOPICS.ID, _TOPICS.TITLE, _THREAD.TITLE, _CONVERSATION.POST
FROM (select top 1 from _TOPICS where Title in (select Title from _THREAD where DOCID...
February 17, 2011 at 9:12 am
Can you try this :
SELECT _TOPICS.ID, _TOPICS.TITLE, _THREAD.TITLE, _CONVERSATION.POST
FROM (select top 1 from _TOPICS) as _TOPICS
RIGHT OUTER JOIN _THREAD
ON _TOPICS.TITLE = _THREAD.TITLE
RIGHT OUTER JOIN _CONVERSATION
ON _THREAD.DOCID =...
February 17, 2011 at 9:10 am
If you need to run only your batch file, you do not need to create SSIS package.
You can just schedule windows job to run your file D:\SSIS\launchftp.bat"
but first you...
June 16, 2010 at 10:50 am
I had this problem. I solved it with steps:
1. Run psftp.exe from command promt, it will ask you to reply "Y" and press enter (!!!)
2. Created SSIS package with...
June 16, 2010 at 10:42 am
-c indicates that SQL Server should run as a program, and not as a Windows 2000 service. Using this parameter makes SQL Server start more quickly in a command window.
-f...
November 17, 2003 at 8:31 am
your command "sqlservr.exe –c –m" also should work, I think you have more than one SQL Server instance. In the command window you must switch to the directory where SQL...
November 14, 2003 at 11:22 am
sorry, 'Andar' is my SQL Server instance name, if you have default instance then just run Sqlservr.exe –c –f –m –s
November 14, 2003 at 11:11 am
I have done that before :
Stop SQL Server, open command line and start SQL Server in Single user mode.
Change directory to the folder where “sqlservr.exe” file is...
November 14, 2003 at 10:52 am
I use:
----------------------------------
execute master.dbo.xp_cmdshell 'dtsrun /SserverName /UloginName /Ppassword /NDTSpackageName /M'
-----------------------------------
replace: serverName = your SQL server,
loginName = your login,
...
September 17, 2003 at 7:50 am
Viewing 11 posts - 1 through 11 (of 11 total)