Viewing 15 posts - 4,786 through 4,800 (of 8,753 total)
Manic Star (8/6/2015)
Thanks everyone! They ended up using CONVERT instead.
Good stuff and you are very welcome
😎
August 6, 2015 at 11:55 am
whereisSQL? (8/6/2015)
eccentricDBA (8/6/2015)
Revenant (8/6/2015)
Ed Wagner (8/6/2015)
SQLRNNR (8/6/2015)
undoRollback
happens
TARDIS
Dr Who
sp_who2
August 6, 2015 at 11:51 am
SQLRNNR (8/5/2015)
Luis Cazares (8/5/2015)
Ed Wagner (8/5/2015)
whereisSQL? (8/5/2015)
Eirikur Eiriksson (8/5/2015)
SQLRNNR (8/5/2015)
poopingPotty
Training
Wheels
Hot
Lips
sealed
August 6, 2015 at 9:59 am
Jeff Moden (8/6/2015)
stevenb 14609 (8/6/2015)
One is to export csv reports for end users.
The other one is to export and then FTP files...
August 6, 2015 at 9:14 am
Tac11 (8/6/2015)
ind.object_name (object_id) it's giving me an error "Ambiguous column name 'object_id"
How do...
August 6, 2015 at 9:02 am
Yogeshwar Phull (8/6/2015)
Well, I am trying to fix something that was already in place for sometime and I have no clue on how the front end works....
August 6, 2015 at 2:22 am
I agree with Jeff on this one, nothing is going to be faster than bcp, are all lines in the incoming file the same format/layout?
😎
Now just for fun, here is...
August 6, 2015 at 2:07 am
ravi@sql (8/6/2015)
Am converting varchar field to float and summing using group by and next inserting to varchar field(table).
while inserting float value it is converting to exponential ex:1.04177e+006
but if i...
August 6, 2015 at 1:31 am
Eddie Wuerch (8/5/2015)
USE master;
GO
EXEC sp_helptext 'fn_varbintohexstr';
GO
Reveals the source code:
create function sys.fn_varbintohexstr
(
@pbinin varbinary(max)
)
returns nvarchar(max)
as
begin
return...
August 6, 2015 at 12:30 am
Manic Star (8/5/2015)
Is there...
August 6, 2015 at 12:24 am
No need to handle the numbers as a string, just select from the table where it is less than the next value up.
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo..#temp') IS NOT NULL...
August 6, 2015 at 12:09 am
alark (8/5/2015)
We have SSIS packages deployed and scheduled on SQL_Server_A. The packages have to access databases on SQL_Server_B, which is behind a firewall.
Question: would opening only SQL port...
August 5, 2015 at 11:34 pm
Further on Kevin's and Luis's answers, optimizing this code to half the execution time should not be too hare, neither getting under one second but this takes some time, do...
August 5, 2015 at 2:07 pm
Sean Lange (8/5/2015)
August 5, 2015 at 2:00 pm
Viewing 15 posts - 4,786 through 4,800 (of 8,753 total)