Viewing 15 posts - 46 through 60 (of 68 total)
Extra FROM
select top 10 * from
from
February 7, 2011 at 3:46 am
Maybe you could set up a trigger to do the second part of the processing during the inserts.
February 3, 2011 at 3:29 am
Best example I have seen on the web. It actually works if you follow the steps.
January 27, 2011 at 7:52 am
Shouldn't the whole Set @SQL = be into quotes?
Set @SQL = 'Insert and so on'
January 14, 2011 at 3:38 am
This is one the first page of the scripts forum and I'm thinking you can convert it from commas to pipes.
http://www.sqlservercentral.com/scripts/String+Manipulation/71602/
December 2, 2010 at 3:37 am
Sorry about the formatting. I must have used the code tags wrong. 🙂
October 13, 2010 at 3:26 am
Our friendly DBA here at work got it working for me. Looks like my biggest mistake was not specifing the database in the connection string. Here are several...
October 13, 2010 at 3:23 am
jrbass81 (8/23/2010)
can anyone figure out WHY??
CREATE procedure [dbo].[TRACKIT_SUMMARY]
AS
BEGIN
declare @DOW int
select @DOW = DATEPART(weekday,getdate())
if @DOW = 2 -- Monday
select
...
August 23, 2010 at 10:55 am
I’m not a DBA, I’m in applications and I’m trying to report on what users are in what roles. The structure is there are roles set up as job...
June 17, 2010 at 6:59 am
Here's some good information on rounding. Maybe you can use one of the functions in Excel or convert one to SQL.
June 14, 2010 at 3:21 am
That’s what I said a few posts ago. There is a bug along these lines in SQL 2005 (below). I think there is a patch for it.
set...
May 14, 2010 at 2:48 am
middletree (5/4/2010)
May 10, 2010 at 3:28 am
umbelgul (3/22/2010)
i am new to sql server 2005 ,but dnt know how to use,any one can guide me from scratch. i want to use sql server 2005 with visual...
March 24, 2010 at 3:22 am
Viewing 15 posts - 46 through 60 (of 68 total)