Viewing 15 posts - 781 through 795 (of 961 total)
Since your using a numeric the left works fine , however after a little experimenting I found that if your gonna deal with string data varchar then substring works...
June 28, 2011 at 5:42 am
I think the answer is quite clear for me , the guy who writes the code owns it esp since if there is a issue in production the dba will...
June 28, 2011 at 12:55 am
Since SQL express has no SQL Agent you will need to script out a backup command and have it scheduled using windows scheduler.
i.e create a batch file and call sqlcmd...
June 28, 2011 at 12:43 am
http://www.sqlservercentral.com/Forums/Topic1126293-391-1.aspx#bm1126863
this has been discussed in the above post as well. Since the users are connecting via terminal services and using sql logins theres not much you can really do.
June 28, 2011 at 12:40 am
Are u using filestream for the catalog directory ?
If so this might help
June 28, 2011 at 12:33 am
Any reason why you cannot use C_ID itself , if you need an other then try using the row_number function or a guid or a computed column. I cant see...
June 28, 2011 at 12:27 am
Thanks I had suggested the same to our DBA folks , haven't heard back from them though 😀
June 27, 2011 at 12:34 pm
Is it worth the effort to identify table with high index fragmentation and then update stats for those tables more frequently instead of doing a full scan
June 27, 2011 at 5:28 am
is it possible to try backup log with truncate with no log followed by the database backup, important to backup the data soon after to prevent data loss.
June 27, 2011 at 5:19 am
You can search for any center which conducts MCITP certification they would most likely have a course on MS SQL DBA.
June 27, 2011 at 4:56 am
Phil Parkin (6/27/2011)
Something like this:
declare @MaxToPoint Int
select @MaxToPoint = max(ToPoint) from PLevel
If @frmPoint <= @MaxToPoint then --> error
Hi
This would remove scope for inserting a range between 1 and 100...
June 27, 2011 at 4:41 am
DECLARE @tbl AS TABLE (ID INT IDENTITY(1,1), LNAme VARCHAR(50),FrmPoint INT, ToPoint INT)
INSERT INTO @tbl (LNAme, FrmPoint, ToPoint)
SELECT 'Level1',101,200
INSERT INTO @tbl (LNAme, FrmPoint, ToPoint)
SELECT 'Level2',201,300
INSERT INTO @tbl (LNAme, FrmPoint, ToPoint)
SELECT...
June 27, 2011 at 4:39 am
I admit that replication is not only for scalability however from the article you mentioned
The definition of high availability below hardly applies to replication I think.
A high-availability solution...
June 27, 2011 at 4:30 am
the query plan looks fine
Could you try running the client stats once more after executing
DBCC DROPCLEANBUFFERS
DBCC FREEPROCCACHE
http://msdn.microsoft.com/en-us/library/ms187762.aspx
http://msdn.microsoft.com/en-us/library/ms174283.aspx
Probably this will make the results more accurate.
June 27, 2011 at 4:00 am
Viewing 15 posts - 781 through 795 (of 961 total)