Viewing 15 posts - 12,046 through 12,060 (of 26,486 total)
polkadot (5/11/2012)
Lynn, Koen reiterated exactly what I need. I like the use of the word form. I didn't use it but it is...
May 11, 2012 at 8:46 am
Thomas Stringer (5/11/2012)
CREATE PROC usp_splitoutputfile
@tablename VARCHAR(200), @volume int,@Splits INT
AS
BEGIN
IF @Splits = 1
BEGIN
...
May 11, 2012 at 8:26 am
Two things. I can't read the image that is supposed to be your expected results. Second, how about putting that into a separate table that we could actually...
May 11, 2012 at 8:09 am
kirkm 55368 (5/11/2012)
May 11, 2012 at 8:07 am
Charmer (5/11/2012)
ChrisM@Work (5/11/2012)
Charmer (5/11/2012)
I am here to discuss the general topics of index....
One of my colleague says if we add filtering(where statement) , it will affect index. Is that...
May 11, 2012 at 7:07 am
vinu512 (5/11/2012)
Lynn Pettis (5/11/2012)
Only suggestion I can give you:http://msdn.microsoft.com/en-us/library/ms131686(v=sql.100).aspx
Thanks for the link Lynn.
I'll see what can be done and get back to you.
Unless you plan on posting code, not sure...
May 11, 2012 at 6:48 am
Personally, I'd concentrate on making the stored procedure more efficient so that it got the job done faster rather than trying to figure out how to send back status messages...
May 11, 2012 at 6:28 am
By the way, never used MARS, so can't answer any questions about it.
May 11, 2012 at 6:26 am
Only suggestion I can give you:
http://msdn.microsoft.com/en-us/library/ms131686(v=sql.100).aspx
May 11, 2012 at 6:25 am
bommaka.nagarjun (5/11/2012)
May 11, 2012 at 6:19 am
bommaka.nagarjun (5/11/2012)
May 11, 2012 at 6:15 am
Unfortunately, can't give you much more as no one here can see what you see. Unless you show us what you are working with and how you have been...
May 11, 2012 at 6:13 am
If the xp your are executing is a litespeed xp, you may get better answers on a Quest forum than here. I have very limited exposure to litespeed so...
May 11, 2012 at 6:09 am
First of all you should store your dates as dates. SQL Server 2008 even has a date data type, use it.
May 11, 2012 at 6:06 am
bommaka.nagarjun (5/11/2012)
[ID] int NOT NULL,
[Fax_Date] datetime NULL,
[Audit_ID] int NULL)
ON [PRIMARY];
GO
Insert into faxes values (1,'6/5/2012',1000)
Insert into faxes values (2,'6/25/2011',1000)
Insert into faxes values (3,'8/15/2010',1000)
Insert into faxes values (4,'9/25/2009',1000)
Insert...
May 11, 2012 at 6:03 am
Viewing 15 posts - 12,046 through 12,060 (of 26,486 total)