Viewing 15 posts - 61 through 75 (of 7,545 total)
SQL data files could in theory gain from 64K cluster size, since SQL often writes data in 64K chunks.
SQL log files are different, so 32K should be just fine for...
August 16, 2024 at 2:33 pm
If you issued an UPDATE against an empty table, the UPDATE counter would still increment.
Maybe that's what happened?
August 15, 2024 at 10:32 pm
(1) more RAM (if you have only 300GB for SQL Server)
(2) do you (page) compress the data?
August 15, 2024 at 3:33 pm
The @p_iType is declared in the called proc as a parameter.
August 12, 2024 at 5:37 pm
Correct. How would SQL ever know you've deleted the backup file? It doesn't know, shouldn't know and shouldn't care.
I don't use maintenance plans (I'm a DBA, we use scripts), but...
August 12, 2024 at 5:36 pm
Yes, that's it, that's all that's required. The full could have been a month (or whatever) ago for all SQL cares. It's up to you to keep any backups you...
August 12, 2024 at 2:29 pm
3. SQL doesn't "know" you've deleted the backup file. Otherwise you could use it as a base. SQL will assume, reasonably enough, that if you take a full backup and...
August 12, 2024 at 2:20 pm
1 NO
2 It isn't. Multiple types of file can be sent a single physical file in SQL Server backups.
3 Look for the last full ('D') backup immediately preceding the 'I'...
August 11, 2024 at 3:14 pm
Only do ONLINE rebuild if you really need it. It has additional overhead and is often not quite as efficient as packing data rows.
Data (page) compression is a great tool...
August 8, 2024 at 7:59 pm
I suggest not working with partial days. Therefore, I suggest changing the first query to:
SELECT * FROM dbo.SQL_SOURCE WHERE Mod_Date >= CAST(CAST(Getdate() AS date) AS datetime) -5
August 5, 2024 at 6:08 pm
I think there should be an explicit "NO REPLACE" option, but MS doesn't have it.
Instead, you can check for the db exiting before you issue the RESTORE DATABASE command:
IF EXIST(SELECT...
August 2, 2024 at 6:50 pm
SELECT
UserGroup.[Name]As GroupName,
UserGroup.[Description]As GroupDescription,
Domain
FROM [dbo].[UserGroup]
CROSS APPLY (
SELECT NULLIF(CHARINDEX('(', Name), 0) AS start_of_substring,
ISNULL(NULLIF(CHARINDEX(')', Name), 0), LEN(Name) + 1) AS end_of_substring
) AS ca1
CROSS APPLY (
SELECT...
July 31, 2024 at 5:05 pm
DROP TABLE IF EXISTS #data;
CREATE TABLE #data ( string varchar(8000) NULL );
INSERT INTO #data VALUES( 'Domain Administrators (abc.domain.com) Group Members'),
('Engineering Supervisors (xyz.domain.com)...
July 31, 2024 at 2:47 pm
Do you mean "sysadmin" (vs. "dbadmin"). SQL is very selective about who can see jobs. If you didn't create the job and aren't sysadmin, you don't typically see the job. ...
July 26, 2024 at 7:27 pm
SELECT ColumnA
FROM dbo.your_table
GROUP BY ColumnA
HAVING COUNT(DISTINCT ColumnB) = (SELECT COUNT(DISTINCT ColumnB) FROM dbo.your_table)
ORDER BY ColumnA
July 25, 2024 at 1:41 pm
Viewing 15 posts - 61 through 75 (of 7,545 total)