Viewing 15 posts - 76 through 90 (of 92 total)
I figured out a stupid way to do it. But if someone shows me a better way, I will be really appreciate.
My way is:
select datename(mm,convert(datetime,[month]+'/1/00'))
from mytable
September 1, 2004 at 5:37 pm
I use this way:
1. Link the server to your local machine:
USE master
GO
EXEC sp_addlinkedserver
'sqlserver', /*Name of the linked server*/
N'SQL Server'
2. run select to make...
August 31, 2004 at 12:46 pm
I created store procedures in the backend, call it from pass-through queries in front-end, and use them as recordsource. By doing this, I have a lot of flexibilities to manupulate...
August 24, 2004 at 12:39 pm
So why don't you limit your data return like specifying a where clause in your store procedure? Another thing you can do is run a access query to filter your...
August 11, 2004 at 11:34 am
Thank you for all of the excellent helps. I tried all of the ways, and they all work great for me.
Minh
August 10, 2004 at 5:29 pm
I had the same issue. All I did was to make a full backup, then dbcc shrinkfile. My log files were shrank immediately.
Minh
August 6, 2004 at 3:16 pm
Here is what Allen Cui showed me before:
select a.*, IDENTITY(int, 1,1) as Counter
into #tmptb
from yourtable a
August 6, 2004 at 2:35 pm
Thank you for all of the ideas. I checked but it seems that my case was not belong to any cases that you mentioned:
1. The client machine run on XP with...
July 21, 2004 at 3:27 pm
I see. Thanks a lot.
How's about GETUTCDATE()? Can I used this function instead? Actually, I'm not sure how this function will work.
Minh Vu
July 8, 2004 at 7:34 pm
Hi Amit, That's terrific! I couldn't believe that it could be done. I thought that I had to write a loop statement.... |
June 4, 2004 at 11:42 am
I tried to achieve the result that looks like this: Item Day Inhand Demand EndingBal Ind A 0 50 0 50 1 A 1 ... |
June 3, 2004 at 5:48 pm
Thanks very much. I did have sp3 install, but somehow this error keeps popping up sometimes. Minh Vu: |
April 22, 2004 at 11:34 am
I had the same issue and change the memo field to varchar(8000). It works fine for me in both Access front... |
February 19, 2004 at 10:55 am
You should check the account that was used to start sqlagent. From Services, can you manually start it? Minh Vu |
February 18, 2004 at 11:22 am
Thanks a lot for all of your help. I can use Inugroho's way to work on since I don't need... |
February 17, 2004 at 12:44 pm
Viewing 15 posts - 76 through 90 (of 92 total)