Viewing 15 posts - 2,101 through 2,115 (of 2,268 total)
sorry it is not clear to me,
Are you trying to load data from a file?
or load some random test data into your table?
June 25, 2008 at 10:22 am
Backups on another server i can understand.
But you would want to have your transaction logs as close to your database as possible.
June 25, 2008 at 9:34 am
I have seen the same thing, developers are good at what they know but some of them design databases that are completly un-scalabe and un-normalised, they grind to...
June 25, 2008 at 6:56 am
gavin.duncan (6/24/2008)
Hi Steveb, thanks again.I need all the fields.........but its only distinct ReviewId's im interested in.
are the other fields unique for the ReviewIds?
could you post some sample data?
June 24, 2008 at 10:31 am
but you are selecting a lot of other fields
SELECT DISTINCT Top 5 [ReviewID],[ReviewType],[ReviewTypeName],[LoginID],[LoginForename],[LoginSurname],[Approved],[ReviewDate]
...
June 24, 2008 at 10:13 am
apparently you can't do a distinct select on a text field.
try casting them as varchar(max)
select distinct cast(FieldName as varchar(max))
June 24, 2008 at 10:05 am
Sorry misread the sql, ignore me 🙂
June 24, 2008 at 9:58 am
You can't do a group by on a text field.
June 24, 2008 at 9:51 am
GSquared (6/24/2008)
June 24, 2008 at 9:43 am
There are some really useful examples of Batch files on this site;
http://www.chebucto.ns.ca/~ak621/DOS/Bat-Adv.html
They should have what you are after or something close that you can modify.
As this is a SQL forum,...
June 24, 2008 at 9:40 am
I use
Microsoft® Visual C#® 2005 Step by Step
Is really useful if you have experience in another language and want to get a good understanding of C#
June 24, 2008 at 7:52 am
I have used this one
Microsoft® SQL Server™ 2005 Analysis Services Step by Step
it is a very good book for learning SSAS from scratch..
June 23, 2008 at 9:39 am
Just say NO.
you wouldn't expect the sys admin to give everyone full access to the AD.
June 23, 2008 at 9:00 am
Security is a big advantage of saving it as a field in the database, you can control access to the image using sql server security.
June 23, 2008 at 7:53 am
Viewing 15 posts - 2,101 through 2,115 (of 2,268 total)