Viewing 15 posts - 1,066 through 1,080 (of 2,486 total)
Also, for the best speed you should use BULK INSERT instead. It's much quicker than BCP for importing data.
July 5, 2005 at 12:17 am
What sort of object is 'orgdetail' ??
July 5, 2005 at 12:15 am
Probably more of a VB.Net question than a SQL question. I believe you can specify different sorting and filtering when you use a dataview.
July 4, 2005 at 7:36 pm
From the information you've posted I'd say the length of the ShipCountry field is shorter than the data you want to put into it. "DestinationSpain" is 16 chars long so...
July 4, 2005 at 4:16 pm
Instead of attach, you'll probably want "Restore" from the backup
Take a look at Restore Database in Books Online.
July 4, 2005 at 4:11 pm
You should also note that Windows XP has a limit of 10 concurrent network connections.
July 3, 2005 at 9:43 pm
Just use the inbuilt DateTime transformation that comes with DTS. No need to fiddlw with ActiveXScripting.
July 1, 2005 at 2:28 am
See my reply over here http://www.sqlserver.org.au/forums/ShowPost.aspx?PostID=659#660
July 1, 2005 at 2:15 am
For indexed views, take for example your classic Product hierarchy. In a normalised OLTP system the tables might look like this,
Product
ProductID, ProductName
ProductCategory
CategoryID, CategoryName
ProductSubCategory
SubCategoryID, SubCategoryName
Normal datawarehousing technique would have you bring...
July 1, 2005 at 1:35 am
Rather than referring to the fields in the dataset, use the ReportItems collection in the SUM.
EG: Sum(ReportItems!Balance.Value)
July 1, 2005 at 1:24 am
You know ... I suggested ages ago that the "Anything that is NOT about SQL" forum should be excluded from the posts counts
June 30, 2005 at 11:20 pm
Oops ... should note that this is C# code
June 30, 2005 at 8:44 pm
Currently of all the parameters in our repotrs we only need to specifically set one per report. Most of the other parameters use system defaults like current date/time/user/etc... Hadn't really thought...
June 30, 2005 at 8:42 pm
Unfortunately you can't. I fell into the same trap and after losing all my wonderful annotations documenting what the package was doing, I've never done it again.
June 30, 2005 at 8:32 pm
How about posting to a more appropriate forum than "Question of the Day (QOD)" ??
Well I checked Books Online for you and found the you can't rollback the restore command.
June 30, 2005 at 8:28 pm
Viewing 15 posts - 1,066 through 1,080 (of 2,486 total)