Viewing 15 posts - 1,126 through 1,140 (of 7,501 total)
only if the existance of a value in the parent table is mandatory for your data model.
Do they have the same level of detail ?
December 3, 2013 at 5:13 am
apparently the regex should be like this:
DECLARE @Table1 TABLE
(
Column1 VARCHAR(32) NOT NULL PRIMARY KEY
);
INSERT @Table1(Column1)
VALUES
('abcdef123'),
('abcdef[123'),
('abcdef]123'),
('abcdef].123'),
...
December 3, 2013 at 3:08 am
xp_fixeddrives shows free space on the drives the sqlinstance can see.
As you now experience, being granted windows level authorities is still a privilege.
Even though an experienced sqlserver dba will need...
December 2, 2013 at 10:30 am
ramyours2003 (12/2/2013)
... [see the SQLAGENT.OUT file for details]...
can you post the errors SQLAgent.OUT has about this job / powershell ?
December 2, 2013 at 10:19 am
did you try to double up the bracket you're looking for?
'%[]]%'
December 2, 2013 at 10:16 am
We use scheduled sqlagent jobs to create the wanted types of backups at the desired time intervals.
So we use TSQL steps to actually create the backups.
We also use backup devices,...
December 2, 2013 at 10:14 am
FWIW I still follow the same guidelines as I used a couple of years ago when designing SQLServer hardware.
In dev we don't have the luxury of SSD or Tiered SAN.
In...
November 29, 2013 at 2:28 pm
Books online has a nice topic on datetime http://technet.microsoft.com/en-us/library/ms187819(v=sql.105).aspx
Default value
1900-01-01 00:00:00
November 29, 2013 at 2:20 pm
According to this overview state 1 means your login (i.e. sa) is disabled.
Error: 18470, Severity: 14, State: 1.
Login failed for user '<x>'.
Reason: The account is disabled.
November 21, 2013 at 12:18 pm
you can download ( free ) the Microsoft JDBC Driver 4.0 for SQL Server drivers at http://www.microsoft.com/en-us/download/details.aspx?id=11774
November 21, 2013 at 6:14 am
oh, yes, indeed, totally forgot about DNS aliasses, however this being a client level issue, chances are it is a client side defined SQLServer alias.
SQL Server Configuration Manager / SQL...
November 19, 2013 at 5:25 am
double check the firewall has the needed exceptions to allow connecting to SQLServer/port using the tool of your choice
November 19, 2013 at 1:10 am
10.50.1600.1 is SQL2008R2 RTM
all higher numbers refer to service packs or cumulative updates, or the combination of both.
Is see in many companies that if they apply service packs/cumulative updates,...
November 18, 2013 at 12:21 am
Did you also publish a web service to consume e.g. the [northwind].[sales by year] stored procedure ?
trying to build my first Windows phone app and experienced the account doesn't...
November 15, 2013 at 3:03 am
A snapshot is a frozen copy of your actual database.
It can be used to provide users a read-only database state at a given point in time ( =create datetime of...
November 6, 2013 at 3:24 am
Viewing 15 posts - 1,126 through 1,140 (of 7,501 total)