Viewing 15 posts - 16 through 30 (of 51 total)
Thanks Thomas, that worked and now thats cool how that works.
Stubob: Thanks for your idea, its a bit long winded and no I cant just use a group by...
December 16, 2003 at 2:04 pm
Yes, I have I am only working with 1 year for now. Once I get the query working to actually show me the number I am looking for, I...
December 16, 2003 at 1:22 pm
Hmm no, I need it per year by terminal summed up.Pretty much I just want a sum of the number as its part of a bigger query.
so if...
December 16, 2003 at 1:08 pm
I was able to take Jonathan's idea to what exactly I need it.
SELECT CONVERT(tinyint,datepart(month,Date_Requested),120) as the_month,CONVERT(smallint,datepart(year,Date_Requested),120) as the_year, COUNT(date_requested) as accidents FROM Accident_Reg
GROUP BY CONVERT(tinyint,datepart(month,Date_Requested),120),CONVERT(smallint,datepart(year,Date_Requested),120)
I needed the...
November 25, 2003 at 11:21 am
By if i do a full backup to Disk would that get everything? I am assuming it will since when I backup to tape it does since I had to...
August 7, 2003 at 10:05 am
Hmm I see, so I will need to backup stored procedures as text files to back them up along with the data.
Matt
August 7, 2003 at 9:33 am
Thanks that worked but I do need to do more testing.
As for your question ganesh you need to break your inserts and updates. You can not have it...
July 24, 2003 at 7:34 am
I am going to switch it to one table its not really necessary since people are going to select more than insert/update just hope they don't keep adding fields to...
April 23, 2003 at 6:52 am
That was my problem, not getting the parent/child in the right order. hmm I am not really certian that this is the best way to design it either I...
April 22, 2003 at 2:46 pm
Hmm that sounds good david but how do you parse out the comma delimited variable as there is no type of split function that I found?
Matt
April 17, 2003 at 7:32 am
no I do not need to view, that is pretty straightfoward I need to be able to write to the table. Since there is no array's it gets a...
April 15, 2003 at 12:28 pm
nope its not PL-SQL. It's UniSQL. It's the sql you use to access Unidata databases. I was just seeing if there was a problem with my where...
March 31, 2003 at 9:52 am
I fixed it for the time being. The SQL Server Agent WON'T start under local so I used admin and gave it sa priviledges.
Matt
March 24, 2003 at 7:49 am
And how do I check that? All of SQL Services can start just fine, I just can not start my backups. I do not have an NT AUTHORITY\SYSTEM login....
March 24, 2003 at 7:07 am
hmm very interesting error message:
Microsoft (R) SQLMaint Utility (Unicode), Version [Microsoft SQL-DMO (ODBC SQLState: 28000)] Error 18456: [Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user 'NT AUTHORITY\SYSTEM'.
Any ideas?...
March 21, 2003 at 3:11 pm
Viewing 15 posts - 16 through 30 (of 51 total)