Viewing 15 posts - 1,336 through 1,350 (of 2,486 total)
Is this a direct SQL to SQL datapump? If so, do you have any indexes on the Archive table? If not try adding a clustered index, there has been documented...
April 6, 2005 at 11:36 pm
Egads
Have you not heard of stored procedures!!
Do a Response.Write before the execute to get the actual sql...
April 6, 2005 at 11:33 pm
Send an email to philcart@gmail.com and I'll send some screenshots.
April 6, 2005 at 10:23 pm
The rdl files are the report definition and are only using in designing the report. Once the report has been designed it's "compiled" and stored in the ReportServer database. at...
April 6, 2005 at 5:08 pm
Is your footer table summarising information that is in the main table? If so, can't you place the summary info in the footer of the main table?
April 6, 2005 at 1:42 am
Well I must have a special server
I use this exact routine in my custom log shipping routine that runs every 5 minutes...
April 6, 2005 at 12:38 am
That's still pretty vague.
Is this date stored somewhere and you want to change it after you've performed the processing??
April 5, 2005 at 7:22 pm
You could perform the same function without using OSQL and xp_cmdshell.
CREATE PROCEDURE dbo.usp_TestLinkedServer @SrvrNm nvarchar(128) AS BEGIN SET NOCOUNT ONDECLARE @sql nvarchar(500)SET @sql = N'SELECT TOP 1 [spid] FROM ' +...
April 5, 2005 at 6:36 pm
Can you explain the business rules a bit more? ie: what has to happen if the current date is 04/20/05 ??
April 5, 2005 at 5:45 pm
Please don't cross post.
See my reply http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=19&messageid=172020
April 5, 2005 at 5:00 pm
There are various ways to do this that involve invoking COM objects and the like, but that gets a little too complicated for my liking.
What I've found to be best...
April 5, 2005 at 4:59 pm
Interestingly the sp_who2 code contains this comment in the dynamic SQL,
-- (Seems always auto sorted.) order by spid_sort
What collation are you using? The spid field is converted to a...
April 5, 2005 at 4:35 pm
You put it in the document map label. This is a standard thing for hyperlinks. You can also use _self, _top, _parent, etc...
From Books Online,
"Advanced Textbox Properties (Navigation Tab)
Use...
April 4, 2005 at 11:43 pm
How about using the SQL Health and History Tool to track server and database info.
April 4, 2005 at 11:28 pm
One thing that I've found handy as part of the checking routine. I run SQL locally on my workstation and all the other SQL Servers forward events to it. Makes checking...
April 4, 2005 at 5:16 pm
Viewing 15 posts - 1,336 through 1,350 (of 2,486 total)