Viewing 15 posts - 5,911 through 5,925 (of 15,381 total)
mbrady5 (1/17/2014)
Thanks a lot Sean. This works perfect for the requirement.
Glad that worked for you and thanks for letting me know.
January 20, 2014 at 7:13 am
raghavender.2369 (1/17/2014)
My report query is having 10 unions. Execution time in SQL server is 20mins. no of records are 20,00,000.
So I have decided to do place the query logic in...
January 17, 2014 at 12:20 pm
dquirion78 (1/17/2014)
January 17, 2014 at 12:05 pm
No idea what your table name is called or what you are really trying to do here but maybe something like this? (Assuming your table name is #Something)
Select *
from #Something
where...
January 17, 2014 at 11:57 am
mbrady5 (1/17/2014)
I have a request to build a random data generator for Manufacturing Inventory Checks.
Everyday, the requester would like a list of 20 locations picked randomly from a DB...
January 17, 2014 at 11:50 am
dquirion78 (1/17/2014)
Last question:
I've a query(french query) WORKING IN Access but NOT in Sql Server 2012 express...
SELECT PrdCmd.NoCommande AS NoCmd
,PrdCmd.DATE
,PrdCmd.Qte AS q
,PrdCmd.Prix AS p
,[p] *
AS Column1
,[column1]...
January 17, 2014 at 11:47 am
Luis Cazares (1/17/2014)
It's not the same to read:
SELECT [MyTable].[Long Column Name] AS A, [MyTable].[AnotherColumnName] AS B, [MyTable].[Long Column...
January 17, 2014 at 10:33 am
briancampbellmcad (1/17/2014)
I have two tables tblBank and tblBook... I'm getting duplicates... any clues?
Looks like the LEFT JOIN would give me only...
January 17, 2014 at 9:45 am
Shanmuga Raj (1/16/2014)
My table column datatype is[nvarchar](max) NULL,
The data is imported from xml, so it is coming in new line with carriage return
I don't see what varchar(max) and/or...
January 17, 2014 at 7:33 am
pooja.sharma 54426 (1/16/2014)
Hi,Please import the attached excel to get data.
Regards
Pooja Sharma
We don't want to download your excel file and then have to spend another 5-10 minutes importing data. We want...
January 17, 2014 at 7:28 am
iiit.raju (1/16/2014)
@ vijay.singh 14112 :Thanks a lot for the reply and the help will check it out.
I will stress again to look at the splitter I reference in my signature....
January 17, 2014 at 7:24 am
Shanmuga Raj (1/16/2014)
My Table column is having data as stored as below in the nvarchar(max) datatype
---------------------------------------------------------------------------------
'(Type is HO) and
(Location...
January 16, 2014 at 2:42 pm
There are a number of ways to accomplish this. Here is one of them.
select case when charindex('and Branch in', s) > 0 then SUBSTRING(s, 0, charindex('and Branch in', s)) else...
January 16, 2014 at 1:55 pm
These are actually different things. Why do they have to match? If you are using a named instance you will never get these to be the same. What is the...
January 16, 2014 at 1:19 pm
Shanmuga Raj (1/16/2014)
(
s varchar(8000)
)
insert @t
values('Location is Asia and Location is Europe and Location is Africa and '),
('(Location is Europe')
select s
from @t
------------------------------
expected result
------------------------------
Location is Asia and Location...
January 16, 2014 at 12:26 pm
Viewing 15 posts - 5,911 through 5,925 (of 15,381 total)