Viewing 15 posts - 6,556 through 6,570 (of 6,678 total)
No, you will still have your two input parameters declared as datetime. You are adding two new variables (@beginDate and @endDate) as datetime variables. You are then going...
May 27, 2008 at 2:24 pm
This sounds like an issue with a bad execution plan for the stored procedure, or it can be related to parameter sniffing.
Try adding the following to the procedure:
AS
DECLARE @beginDate datetime,
...
May 27, 2008 at 11:10 am
Please review this topic in BOL as was suggested earlier. From BOL:
nvarchar [ ( n | max ) ]
Variable-length Unicode character data. n can be a value from...
May 27, 2008 at 10:19 am
I tried - but now this is an SSIS process? Please read the article I linked to earlier and see if you can provide the information we need to...
May 26, 2008 at 12:33 pm
I'm sorry - I still don't understand what you are trying to accomplish. To insert into Emp from OldEmp it would be something like:
INSERT INTO Emp (EmpId,Empno,Empname,Jobno,Jobdesc,JobTitle)
...
May 26, 2008 at 12:14 pm
Actually, I have no idea (yet) of what you are trying to accomplish. Please review the following article and see if you can put together an example I can...
May 26, 2008 at 11:25 am
What do you want a script to do?
Check to see if SQL Server is running, and if not - start it? If so, I wouldn't want to just restart...
May 26, 2008 at 11:14 am
Not sure what you are asking for here. Can you provide DDL for the tables, sample data in each table, and examples of what should happen in each case?
Jeff
May 26, 2008 at 11:03 am
You can use SQL Server Configuration Manager to identify all SQL Server services available on that system. Since I don't have SQL Server 2000 and 2005 loaded on the...
May 26, 2008 at 10:33 am
SQL Server runs as a service on Windows. You set the service to start automatically and every time Windows is restarted, SQL Server will be automatically started.
Just set all...
May 26, 2008 at 10:24 am
In addition to what Gordon has stated, what kind of SAN did you get? Are you going with an EVA 4000/5000/8000/8100?
When building the LUN's, pay particular attention to how...
May 23, 2008 at 6:25 pm
1) Are you sure that sp_updatestats only updates stats that need it? a) if autoupdate is on this would be pointless since they would already be done presumably and...
May 23, 2008 at 6:14 pm
Not sure I follow you - what did you change?
If you modified the column from a varchar to a datetime, and that column contained invalid date data it should have...
May 23, 2008 at 6:03 pm
I just reviewed and SQL Server 2000 does support BACKUP WITH SNAPSHOT.
You can review the document: http://msdn.microsoft.com/en-us/library/aa173495.aspx
This definitely looks like an issue with the backup software.
Jeff
May 23, 2008 at 1:14 pm
Unless you are using 'sp_updatestats' or something similar that only updates statistics on those objects that need to be updated. Running that right after rebuilding indexes will skip your...
May 23, 2008 at 12:42 pm
Viewing 15 posts - 6,556 through 6,570 (of 6,678 total)