Viewing 15 posts - 9,481 through 9,495 (of 26,489 total)
YSLGuru (9/18/2012)
Lynn Pettis (9/18/2012)
Have you tried this on the new server?
SELECT @sMysql = 'bcp "SELECT sOutput FROM MYDATABASE.dbo.VPOSITIVEPAY" queryout ' + @sFilePath + @sFileName + ' -T -c'
Yes. When...
September 18, 2012 at 3:53 pm
May be MS, but that shouldn't stop you from adding an index if it helps. I worked ith PeopleSoft developers and added several indexes to PeopleSoft systems to support...
September 18, 2012 at 3:38 pm
MissTippsInOz (9/17/2012)
yuvipoy (9/17/2012)
Hey look at this Topic [Deleting large number of rows from a table]http://www.sqlservercentral.com/articles/T-SQL/72606/
Thanks!
I hope this doesn't come across as rude, but I work for a very large company,...
September 18, 2012 at 3:33 pm
That is a very small database. Wait until you work with a system like PeopleSoft with 50,000+ tables. Good thing the application handles the security there.
September 18, 2012 at 3:25 pm
Fixed the code:
declare @members table (mid int, dob date, fname varchar(10), lname varchar(10));
insert into @members
values (1,'1959-08-29','a','a'),(2,'1959-09-29','b','a'),(3,'1959-10-29','c','a'),(4,'2011-09-20','a','d');
select
m.fname + ' ' + m.lname
from
@members m
where
...
September 18, 2012 at 2:59 pm
Try this:
select
m.fname + ' ' + m.lname
from
members m
where
m.dob >= cast(getdate() as date) and
m.dob <...
September 18, 2012 at 2:41 pm
Could be an indexing issue as well. Not using MDW so only a guess.
September 18, 2012 at 2:17 pm
Jayanth_Kurup (9/18/2012)
http://www.sqlservercentral.com/Forums/Topic1041144-391-1.aspx
Let us make it easier for others:
http://www.sqlservercentral.com/Forums/Topic1041144-391-1.aspx
September 18, 2012 at 2:06 pm
Well, at least I did post this on the actual thread!
rhythmk (9/18/2012)
boehnc (9/17/2012)
i...
September 18, 2012 at 1:20 pm
You will need to apply the service pack to the new instance. Each instance has its own set of files.
September 18, 2012 at 1:17 pm
This article should help with understanding transaction log backups:
http://www.sqlservercentral.com/articles/Administration/64582/
I would also recommend reading about these in Books Online, the SQL Server Help System.
September 18, 2012 at 1:03 pm
kramaswamy (9/18/2012)
I'm a bit confused regarding the different modes of backup.
If I understand correctly, a FULL backup takes a backup of the entire database, and then takes a backup...
September 18, 2012 at 1:01 pm
SQLRNNR (9/18/2012)
Lynn Pettis (9/18/2012)
I'm not in a postion...
September 18, 2012 at 12:57 pm
Only thing that comes to my mind is a custom written application. Even then it may not doable due to restrictions in Excel and the number of columns it...
September 18, 2012 at 12:48 pm
Flat file, 150,000 columns, SQL Server only allows 1,024 columns per table. The flat file needs to be imported into Excel spreadsheets.
I'm not in a postion to help.
September 18, 2012 at 12:41 pm
Viewing 15 posts - 9,481 through 9,495 (of 26,489 total)