Viewing 15 posts - 91 through 105 (of 2,006 total)
JackTimber (9/5/2014)
I am sorry to pluzzel you with my requirement. But i thought of giving myself a day and try to come up with a...
September 8, 2014 at 6:19 am
JackTimber (9/4/2014)
since yesterday i am trying to tiled your solution to solve my problem.
As in my case there would be different user , so i...
September 5, 2014 at 12:23 am
Also, might be worth adding a "SELECT @FirstName, @LastName;" to the top of the sproc, to see how it gets passed in to SQL Server.
September 4, 2014 at 8:45 am
lefevers (9/4/2014)
That still didn't workPuts ????? in firstname field
What is the DDL of your table?
September 4, 2014 at 7:18 am
lefevers (9/4/2014)
The FirstName and LastName values being passed in are in cyrillic text.
How do I add the N prefix in...
September 4, 2014 at 7:13 am
JackTimber (9/4/2014)
I am sorry to post the problem of the same type , but i am not able to logically interpret how to traverse through the queries 🙁
Please...
September 4, 2014 at 6:59 am
abhas (9/4/2014)
Scenario is like that single dept can have multiple LocationHeads, If Location heads are multiple then they should display in single column using *starting the name as mentioned...
September 4, 2014 at 5:33 am
SELECT skuid,
SUM(CASE WHEN Online = 1 THEN -SalesAmount
...
August 27, 2014 at 7:08 am
nevarda (8/11/2014)
the text question is similar to: please rate the service received out of 10
Well then the answer should be a list of option buttons where the user should only...
August 11, 2014 at 3:31 am
hoseam (8/11/2014)
CREATE TABLE [dbo].[TblUpdate](
[uid] [int] IDENTITY(1,1) NOT NULL,
[AccessGroup] [varchar](50) NULL,
[ReportPath] [varchar](250) NULL)
INSERT INTO [TblUpdate]
VALUES('Banks', '/AWDBI/WORK FINALISED/AGE ANALYSIS'),
('Banks', '/AWDBI/WORK FINALISED/AGE ANALYSIS/DETAILS'),
('Banks',...
August 11, 2014 at 3:19 am
Probably no better than Anthony's, but using the 8K Delimited Splitter[/url] : -
IF EXISTS ( SELECT 1
FROM...
August 7, 2014 at 8:12 am
Sebastian Zeller (8/7/2014)
Cadavre (8/7/2014)
Sebastian Zeller (8/7/2014)
(If not...
August 7, 2014 at 8:04 am
Or append 114 to your current query: -
SELECT 'plan_werte_' + CAST(REPLACE(CONVERT(VARCHAR(26), GETDATE(), 112) + CONVERT(CHAR(5), GETDATE(), 114), ':', '') AS VARCHAR(50)) + '.csv';
August 7, 2014 at 8:02 am
Viewing 15 posts - 91 through 105 (of 2,006 total)