Viewing 15 posts - 19,831 through 19,845 (of 26,490 total)
Lowell (7/10/2009)
here's one way to do it; here i'm assuming the column is...
July 10, 2009 at 10:51 am
ps (7/10/2009)
Use replace function.select replace ('PQ19188PFAA','H','')
Possibly, but the original request actually asked how to remove the 10th character. What if the character to be removed from the 10th position...
July 10, 2009 at 10:46 am
Look up the STUFF function in BOL (Books Online, the SQL Server Help System). Based on the description of your problem, this is just what you need.
select stuff('PQ19188PFHAA',10,1,'')
July 10, 2009 at 10:44 am
Actually, Jack, I should have been more specific. I'd still have a regularly scheduled t-log backup process running. The Alert would just run that job outside its normal...
July 10, 2009 at 10:41 am
I see someone has already shown a method, but I still want to post my code (as attachment to avoid frustration on my part).
Please pay close attention to the setup...
July 10, 2009 at 10:24 am
You can create an Alert in SQL Server Agent based on the SQL Serverperformance condition that the transaction log is greater than a certain percentage. The response to that...
July 10, 2009 at 10:07 am
Here is one solution, but I had to upload it as an attachment. I am really getting tired of this intermittent issue of not being able to post code...
July 10, 2009 at 10:00 am
Luiz (7/10/2009)
SQL ORACLE (7/10/2009)
You may try to set ROWCOUNT on the user's SSMS.What do you mean?
Regarding SET ROWCOUNT for SQL Server 2005 Books Online:
Using SET ROWCOUNT will not affect DELETE,...
July 10, 2009 at 9:41 am
sqlguru (7/10/2009)
July 10, 2009 at 9:17 am
ian.dunlop (7/10/2009)
I have a table that I want to be able to add a column for a running total for GWP.
GWP is...
July 10, 2009 at 8:42 am
Best thing you can do at this point is open up BOL (Books Online, the SQL Server Help System) and start reading about transaction logs. The following link is...
July 10, 2009 at 8:34 am
Failover won't do you any good as it is the same database that will be used when SQL Server comes up on the other node.
July 9, 2009 at 8:38 pm
Another option that could be also be developed is a SQL Server Broker application to transfer the data.
July 9, 2009 at 5:11 pm
It will either create a new trace file, trace_2.trc if trace.trc and trace_1.trc already exist, or it may start appending to the current trace file if it hasn't reached its...
July 9, 2009 at 3:53 pm
Florian Reischl (7/9/2009)
At work I use IE8 on XP x32, without any problems using SharePoint or OfficeLive there. In my case it just don't work on a...
July 9, 2009 at 2:35 pm
Viewing 15 posts - 19,831 through 19,845 (of 26,490 total)