Viewing 15 posts - 631 through 645 (of 1,233 total)
In Excel, insert a column next to the one with the date. Assuming there is a value in B2 displaying like 12/31/2015 ... Enter a formula into C2 (the new...
January 15, 2016 at 5:40 pm
Great question. It reminds me of the merge join transform in SSIS, the inputs have to be ordered in like fashion.
January 14, 2016 at 1:20 pm
summerpet39 (1/14/2016)
January 14, 2016 at 11:21 am
If this is indeed the case, I am not sure why updating one field means blanking out the other, but as I mentioned I am probably missing a thing or...
January 14, 2016 at 11:08 am
Now if a field does not need updating, I guess the value in the table would stay null.
How to get around that in some cases (UPDATE X SET field4=7,...
January 14, 2016 at 11:06 am
abdullah.zarour (1/13/2016)
Quick questions. Have you ever partitioned a table? If so, can you provide some actual facts as to what the performance gains you realized?
Yes , I did...
January 13, 2016 at 6:19 pm
Eirikur Eiriksson (1/13/2016)
SQLRNNR (1/13/2016)
Jacob Wilkins (1/13/2016)
edwardwill (1/13/2016)
Jacob Wilkins (1/13/2016)
edwardwill (1/13/2016)
Eirikur Eiriksson (1/12/2016)
SQLRNNR (1/12/2016)
January 13, 2016 at 4:33 pm
abdullah.zarour (1/13/2016)
You might try the following point :
1. Create a table partition.
2. Configure the SQL Server Instance Option ( Optimize for Ad hoc workloads).
3. Check Max...
January 13, 2016 at 4:25 pm
If that is the case I am wondering how many different permutations of updated columns do you need compared to the number of Id's... which leads me to wonder if...
January 13, 2016 at 4:22 pm
Stijn977 (1/11/2016)
Can you further define "big transaction"?
==> 500 to...
January 13, 2016 at 2:41 pm
Orlando Colamatteo (1/12/2016)
MMartin1 (1/12/2016)
Orlando Colamatteo (1/12/2016)
titsiros (1/12/2016)
I know it's a...
January 12, 2016 at 6:42 pm
Orlando Colamatteo (1/12/2016)
titsiros (1/12/2016)
I know it's a grand task because...
January 12, 2016 at 6:02 pm
Borrowing from Eirikur's code a little bit,
Maybe you are looking for something like this ?
create table #sampleScheduleData
(
scheduledClass VARCHAR(50) ...
January 12, 2016 at 5:04 pm
I am assuming that this is a string column for a int column would not hold the leading zero by the way.
declare @myint int = '0123'
select @myint
Plus needless to...
January 12, 2016 at 4:45 pm
Now i want to convert this into yyyy-mm-dd format ie 2015-01-09
If you are still introducing this into another string column then
declare @mystring varchar(10) = '01092015' ;
select right(@mystring,4) +'-'+
left(@mystring,2)+'-'+
substring(@mystring,3,2)asdateFormattedString
This leaves...
January 12, 2016 at 4:40 pm
Viewing 15 posts - 631 through 645 (of 1,233 total)