Viewing 15 posts - 46 through 60 (of 2,903 total)
I've had similar experiences with Excel. SQL Server doesn't always like the dates used by Excel. My solution has been to import the Excel spreadsheet into a staging...
May 26, 2016 at 1:25 pm
Before you completely quit...try one more thing. Run a trace. Maybe that will show you what is really happening. Since this is so weird, make sure you capture...
April 12, 2016 at 4:28 pm
It's possible the GUID tablenames was done for 'security' reasons. No interloper would know what the table was for based on the name....still doesn't make it right, but that...
April 7, 2016 at 8:35 am
We really need to see the query you are using to create the results you are getting. You could be using a join wrong, or the wrong type of...
April 6, 2016 at 2:12 pm
Sean Lange (4/5/2016)
Luis Cazares (4/5/2016)
Phil Parkin (4/5/2016)
Gail and I are gamely persevering with this one. I think my pressure limit has been reached now, though.
I constantly avoid that person's threads....
April 6, 2016 at 10:39 am
It looks like you are using the wrong syntax for ANSI_PADDING. I believe it should be On or Off...not True or False.
-SQLBill
March 16, 2016 at 5:16 pm
imba (3/2/2016)
I feel really stupid, THANK YOU.
No need to feel stupid...sometimes we all overlook the obvious.
-SQLBill
March 2, 2016 at 2:01 pm
I wonder if Microsoft is going the way of Windows 10 with SS2014. Instead of releasing major updates (Service Packs), just releasing CUs as they come available.
-SQLBill
March 2, 2016 at 2:00 pm
Are you only refreshing data? Or do you need to update the schema also? If you only need the data, you could use BCP to bring the data...
March 2, 2016 at 1:58 pm
I believe you are going about it wrong. Your comparison needs to be in a WHERE clause:
SELECT [time]
FROM Table1
WHERE CAST([time] AS time) > (CAST('16:00' AS TIME))
GO
Now I haven't...
March 2, 2016 at 1:56 pm
Bottom line...no. DBO schema is the 'everyone' schema. Mylogin schema is owned by Mylogin (so the sqlbill schema is owned by me). For anyone else to accessw mylogin...
February 29, 2016 at 9:10 am
Andrew Bagley (2/26/2016)
I have another thought about my "invisible data" problem..
My DB had to be restored about 10 years ago and I found that objects created were no longer dbo....
February 26, 2016 at 11:40 am
You should also be able to use ISNUMERIC to see what data is not numeric and therefore can't be converted.
-SQLBill
February 25, 2016 at 12:39 pm
As for the inserting of data....is there a trigger on the table that might be keeping you from inserting more than one row at a time?
-SQLBill
February 25, 2016 at 12:36 pm
The data exists in the SQL Server database since you can query it okay. Is that correct?
If so, then the issue isn't with inserting the data. It's there, it's...
February 25, 2016 at 12:34 pm
Viewing 15 posts - 46 through 60 (of 2,903 total)