Viewing 15 posts - 436 through 450 (of 1,655 total)
If I understand you correct you ask if you can install SQL Server 64-bit on a 32bit OS. That's not possible.
While you can install a SQL 32-bit version on...
March 17, 2009 at 4:50 am
amarbreddy21 (2/11/2009)
SQL Server records the first and last log sequence number (LSN) which is included in a backup
This LSN is stored only for backing up transaction logs r does...
February 11, 2009 at 8:16 am
SQL Server records the first and last log sequence number (LSN) which is included in a backup. This information is stored in the msdb databases in the backupset table.
This article...
February 11, 2009 at 7:55 am
Use a height value of 0 for interactivesize.
February 11, 2009 at 7:54 am
Oops, I didn't see that this was posted under SSIS. But I think you could still call sqlcmd using the Exec Process Task in SSIS.
But probably the better approach would...
February 11, 2009 at 7:28 am
The page size can be set in two ways. First select your report and show properties. Under LAyout you can define the size of a page.
For the HTML reports you...
February 11, 2009 at 7:10 am
You can either simply declare the variables in you script and then SET the values or you can use sqlcmd.exe with variables
Save your query as yourscript.sql like this:
select field1, field2,...
February 11, 2009 at 6:54 am
Alexander,
if you transfer your logins including the SID, you won't need to use 'sp_change_users_login'. This procedure is usefull if you create a login with the same name like on...
February 11, 2009 at 3:27 am
I just wonder, depending on the properties you're looking for can't you just query master.sys.databases?
It contains a column for almost any database property, incl compatibility level.
Another approach would be using...
February 11, 2009 at 2:22 am
bodhilove (2/10/2009)
Hi all,can you install .NET Framework 3.5 on a SQL 2005 machine? I had a feeling this build of .NET was for 2008.
Yes you can install 3.5 on...
February 11, 2009 at 1:27 am
I think the errormessage is pretty clear. The owner of the job cannot be verified. Either the windows login has been removed or the server couldn't contact AD to verify...
February 11, 2009 at 1:19 am
There is no hard limit for the number of rows. Like BOL says it's only limited by the available storage space.
If you should partitition your table or not is depending...
February 10, 2009 at 1:19 am
Rudy,
I did experience the same on one server. Not 100% sure if it was the same error but I think it was. In my case a simple refresh did...
February 9, 2009 at 11:30 am
Don't forget to move your logins, jobs, alerts and operators. You can do these either through scripts or using SSIS.
February 9, 2009 at 11:24 am
Do you want to eliminate duplicates or do you just want to append all records from one table to the other?
In the second case just do:
INSERT INTO TABLE1
SELECT * FROM...
February 9, 2009 at 8:53 am
Viewing 15 posts - 436 through 450 (of 1,655 total)