Viewing 15 posts - 26,086 through 26,100 (of 26,487 total)
I believe that SP2 was also released for Windows Server 2003 R2 Enterprise x64 Edition. This is the version of the OS we are running for our Data Warehouse development...
April 18, 2007 at 11:51 am
Cursors are not bad, you just have to use them appropriately.
April 18, 2007 at 6:57 am
Check BOL, CAST AND CONVERT. You will find the different format codes for converting dates to character strings there.
April 17, 2007 at 4:10 pm
Okay, I guess I am getting confused. If you are looking for a code with '12%', how can you get a code like 'AB12'? Still need to know what is...
April 17, 2007 at 12:12 pm
John, True. Like I said, wrote it off the top of my head. At least I was trying to get read of the space in the datetime stamp. I don't...
April 17, 2007 at 12:06 pm
David,
I'd be interested in learning more about this wrapper you use. What, where, how much, are the basic questions, plus where can I learn more.
April 17, 2007 at 12:02 pm
declare @backupfile nvarchar(2000)
set @backupfile = N'C:\TESTDB\TESTDB_db_' + replace(convert(nvarchar(50), getdate(), 120), ' ',':') + N'.BAK'
BACKUP DATABASE [TESTDB] TO DISK = @backupfile ...
I think. Give it a try, I wrote this off...
April 17, 2007 at 11:57 am
Feels good when you figure something out on your own, doesn't it? Now, if someone else has a similiar problem, you are in a position to help out.
April 17, 2007 at 11:44 am
Here is where you need to start, BOL. Lookup the tables sysjobs and sysjobhistory. After your stored procedure starts the job, it needs to loop while waiting for the job...
April 17, 2007 at 11:14 am
It could also depend on high large your database is expected to get. Using filegroups can speed up backup processes by allowing you to backup only the filegroups where data...
April 17, 2007 at 11:08 am
The N in front of a string constant, like N'false', simply indicates that the string is converted into Unicode (nchar or nvarchar data types.
April 17, 2007 at 8:18 am
The stored procedure msdb.dbo.sp_start_job, starts the job and then returns. If it returns 0, then the job was successfully started, else it failed to start. If you want to know...
April 17, 2007 at 7:55 am
I have an idea how to do this, but I need a little more information. What do your product values look like, and how do they increment?
April 17, 2007 at 7:24 am
April 16, 2007 at 8:06 pm
Viewing 15 posts - 26,086 through 26,100 (of 26,487 total)