Viewing 15 posts - 361 through 375 (of 532 total)
I've had zero problems.
If you post the query you're using it's possible someone would be able to see where something is amiss.
June 4, 2010 at 3:52 pm
Generally I think it's better to create a specific account that you want to use for your web application to access your SQL Server rather than using the built-in machine...
June 4, 2010 at 3:45 pm
The request isn't altogether clear, but the way I'm reading it is that you're looking for the people who went to the last event as their first event. If...
June 4, 2010 at 1:01 pm
Randy100 (6/4/2010)
"Batting 2nd": An application that strips off these attachments and saves the files in a specified directory.
Use this same application to fire off the SSIS package that will do...
June 4, 2010 at 11:56 am
Not sure exactly how you want to do groupings and the data you provided didn't exactly match up with the results but hopefully this will give you an idea of...
June 4, 2010 at 11:49 am
I wish they had the Internets back when I had homework assignments!
June 3, 2010 at 6:38 pm
Please do not cross-post the same questions. This thread can be found here.
June 3, 2010 at 2:28 pm
So you want to grant NTFS permissions via T-SQL?
Are these homework questions?
June 3, 2010 at 2:24 pm
Put together table definitions (as I have done above) for all of the relevant source tables. Then write out the script to insert a meaningful amount of data into...
June 3, 2010 at 2:20 pm
hawg (6/3/2010)
June 3, 2010 at 2:12 pm
hawg (6/3/2010)
There is not any kind of index on this date, or any other helpful column ...
You need to add the date column to an index. You won't...
June 3, 2010 at 1:59 pm
In the future it helps to put together table definitions and insert statements so people can more easily help you:
create table #table2
(
CustomerNum int,
PostDate datetime,
OfferAccepted char(1),
OfferName1 varchar(10),
OfferName2 varchar(10),
OfferName3 varchar(10)
)
insert into #table2
select...
June 3, 2010 at 1:50 pm
declare @ByName varchar(25)
declare @BySpecID int
declare @ByOfficeID int
declare @ByCity varchar(25)
declare @ByCounty varchar(11)
set @BySpecID = 21
set @ByName = 'r'
set @ByCounty = 'Albany'
select *
from #NameList
where [Name] like '%' + @ByName + '%'
and [City]...
June 3, 2010 at 12:00 pm
Am I completely crazy or did you ask pretty much the exact same question in this thread, which is complete with an answer that went completely unrecognized?
June 2, 2010 at 10:47 pm
Personally this is something I would do on the application side. You would need a separate set of tables to hold the data you need for your application to...
June 2, 2010 at 10:32 pm
Viewing 15 posts - 361 through 375 (of 532 total)