Viewing 15 posts - 11,896 through 11,910 (of 26,486 total)
Do you really need to do all those LTRIM(RTRIM()) function calls in your join criteria? That is one thing that is potentially killing your query.
May 17, 2012 at 9:57 am
krypto69 (5/17/2012)
I'm having some trouble with what I thought was a fairly easy query...
select CMPCOMPANYCODE
,CMPCOMPANYNAME
,CMPCOID
...
May 17, 2012 at 9:50 am
mtassin (5/17/2012)
Lynn Pettis (5/17/2012)
May 17, 2012 at 9:25 am
You do realize Books Online can answer your questions if you take the time to read it.
insert into table1 (column1, column2,column3)
select column1,column2,'0' from table2
union all
select column1,column2,'1' from table2;
May 17, 2012 at 9:18 am
RBarryYoung (5/17/2012)
Oh, and "Upgradation" isn't really a valid word in English. Just use "Upgrade" instead.
You find it used off-shore, particularly India: http://oald8.oxfordlearnersdictionaries.com/dictionary/upgradation
We now have, English, American English, and...
May 17, 2012 at 9:14 am
mtassin (5/16/2012)
CELKO (5/15/2012)
May 17, 2012 at 8:59 am
CELKO (5/17/2012)
We picked one of ISO-8601 formats for SQL. This makes porting code much easier if...
May 17, 2012 at 8:51 am
SQLCrazyCertified (5/16/2012)
erics44 (5/16/2012)
I have always been under the impression that in tables where there are a lot of inserts a clustered index should be avoided and clustered indexes should be...
May 16, 2012 at 8:45 pm
AskSSC is more of a simple ask a question and get an answer type site. You won't find the kind of discussions there that occur here on ssc. ...
May 16, 2012 at 8:43 pm
Andrea Sawyer (5/16/2012)
May 16, 2012 at 6:00 pm
riya_dave (5/16/2012)
thanks,it worked in sql.but nit in ssrs expression.
any idea?
Nope, don't have the Visual Basic.NET documentation available here.
May 16, 2012 at 4:00 pm
Curious, what happens if you leave out the varchar(max) field while moving the data using the import/export wizard?
May 16, 2012 at 3:35 pm
Need to verify that you are using SQL Server 2000, as this will determine how to approach this.
May 16, 2012 at 3:32 pm
Lynn Pettis (5/16/2012)
DECLARE @StartDate DATETIME,
...
May 16, 2012 at 3:30 pm
Viewing 15 posts - 11,896 through 11,910 (of 26,486 total)