Viewing 15 posts - 4,606 through 4,620 (of 8,761 total)
ramezani583 21209 (9/9/2015)
In the Operating environment databases, may be made tables in the database on a temporary basis but they are still yet and they are not removed, how...
September 9, 2015 at 1:07 am
dan-572483 (9/8/2015)
September 9, 2015 at 12:32 am
shamshad.ali (9/8/2015)
create TRIGGER [trg_connection_MyServer]
ON ALL SERVER WITH EXECUTE AS 'Smith'
FOR LOGON
AS
BEGIN
IF ORIGINAL_LOGIN()= 'Smith'...
September 8, 2015 at 11:00 pm
Run DBCC CheckDB ('[db_name]') WITH NO_INFOMSGS, ALL_ERRORMSGS and post the full unedited output.
😎
BTW, how much free disk space does the server have?
September 8, 2015 at 10:47 pm
ilovedata (9/1/2015)
-->All
---->Ken, Sanchez
------->Laura, Norman
------->Debbie, Borah
---------->Shawn, Mike
---------->Lacey, Rhonda
Now I...
September 8, 2015 at 10:15 pm
Quick questions, why use Lock Pages in Memory? Is there anything else running on the server, i.e. SSAS, SSIS or SSRS?
😎
Have a look at these two articles
September 8, 2015 at 10:10 pm
karen.blake (9/7/2015)
Will try and explain this better.
We have a SAL field in the database that has numeric and alpha and just alpha data in it.
I need to get a...
September 8, 2015 at 1:15 am
Quick thought, according to the log the server is listening on TCP 1433 and 1434(DAC) but no mentioning of UDP 1434, is the Browser Service running?
😎
September 8, 2015 at 1:08 am
algytaylor (9/7/2015)
PHP has been printing out the following error when I try to connect to SQLServer 2008 RC2:
Fatal error: Uncaught exception 'PDOException' with...
September 7, 2015 at 11:14 pm
One can truly argue that science is probably the greatest invention but in the adoption of scientific methods in the software industry it has somehow gotten lost in translation. Hypothesis...
September 7, 2015 at 11:11 pm
keng_mkt (9/7/2015)
In Command line tab/FILE "\"C:\Users\Administrator\Documents\Visual Studio 2010\Projects\SSIS_KENG_TEST4_86_TO_21\SSIS_KENG_TEST4_86_TO_21\Package.dtsx\"" /DECRYPT /CHECKPOINTING OFF /REPORTING E
Quick question, can the SQL Server Agent access the Administrator's home directory?
😎
September 7, 2015 at 10:52 pm
Piling on Andrew's and Ed's good answers: avoid using functions on the columns in the where clause if possible and all the alternatives forms of that, such as function in...
September 7, 2015 at 10:38 pm
Quick suggestion, use N'' prefix, then the SQL Server automatically uses UTF-16
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TABLE1') IS NOT NULL DROP TABLE dbo.TABLE1;
CREATE TABLE dbo.TABLE1
(
XXXX varchar(255) NULL
...
September 7, 2015 at 11:37 am
maddukuru.rambabu (9/6/2015)
Hi All,Please find attachment which contains screenshot of Error
Please Help me.
If you are trying to overwrite the existing database then use WITH REPLACE (options tab in the restore database...
September 7, 2015 at 1:19 am
Post the full configuration for the agent job.
😎
September 6, 2015 at 11:53 pm
Viewing 15 posts - 4,606 through 4,620 (of 8,761 total)