Viewing 15 posts - 8,821 through 8,835 (of 13,882 total)
cheryljanicedsouza (1/3/2015)
My whole column needs to be converted into that format, not the specific field
Any solution proposed here will, of course, need to modified to run against your data, but...
January 3, 2015 at 4:24 am
Eirikur Eiriksson (1/3/2015)
Luis Cazares (1/3/2015)
DECLARE @date date = '20140927'
Be careful with the implicit conversion as the results will be depending on the system settings, no guarantee that it will be...
January 3, 2015 at 3:08 am
Eirikur Eiriksson (1/3/2015)
Phil Parkin (1/3/2015)
just set @@Identity to a variable and do a second insert statement.
Rather than @@Identity, you would be...
January 3, 2015 at 1:59 am
Please post the full text of the error message you receive.
January 3, 2015 at 1:38 am
By the way, this is not a great idea:
just set @@Identity to a variable and do a second insert statement.
Rather than @@Identity, you would be better off using Scope_Identity()....
January 3, 2015 at 1:35 am
Does your source header data include a natural key which you could use for lookup purposes after writing to the parent table?
January 3, 2015 at 1:31 am
Viewing the XML for the execution plan, there are references to the CONVERT_IMPLICIT() function.
January 2, 2015 at 8:52 am
Thanks Luis
On 2014, I get exactly the same execution plan for both 1 and 'true'. And no implicit conversions.
--Edit
Each statement seems to be converted to
SELECT * FROM [bitTest] WHERE...
January 2, 2015 at 8:47 am
Steve Jones - SSC Editor (1/2/2015)
January 2, 2015 at 8:39 am
Eirikur Eiriksson (1/2/2015)
January 2, 2015 at 8:23 am
You could use something like this one to get rid of weekends.
To exclude your other non-work days, simply
select count(*)
from ih_non_work_days
where [apply start and end date filter here]
And subtract this...
January 2, 2015 at 4:53 am
Why not just configure the Foreach Loop to crawl through all the subfolders? No scripting required.
January 2, 2015 at 4:16 am
Welsh Corgi (12/31/2014)
Phil Parkin (12/31/2014)
Yes you can.Thanks again.
Where is the download for the SQL Server 2014 Client?
If you mean the management tools, you should follow the link I sent previously....
December 31, 2014 at 9:49 am
Now it's my turn to be stumped! I don't know what you mean.
Are you aware that the import wizard creates a package "behind the scenes" & then runs it?
As you...
December 31, 2014 at 9:29 am
Viewing 15 posts - 8,821 through 8,835 (of 13,882 total)